diff --git a/.buildtool/23.2.0.2515942/taskTraces/T1C9346538979369F b/.buildtool/23.2.0.2515942/taskTraces/T1C9346538979369F deleted file mode 100644 index e6be403a..00000000 Binary files a/.buildtool/23.2.0.2515942/taskTraces/T1C9346538979369F and /dev/null differ diff --git a/.buildtool/23.2.0.2515942/taskTraces/T2A0791B5FFCB38DE b/.buildtool/23.2.0.2515942/taskTraces/T2A0791B5FFCB38DE deleted file mode 100644 index 10f1e197..00000000 Binary files a/.buildtool/23.2.0.2515942/taskTraces/T2A0791B5FFCB38DE and /dev/null differ diff --git a/.buildtool/24.1.0.2628055/taskTraces/T2A0791B5FFCB38DE b/.buildtool/24.1.0.2628055/taskTraces/T2A0791B5FFCB38DE deleted file mode 100644 index 287dcd18..00000000 Binary files a/.buildtool/24.1.0.2628055/taskTraces/T2A0791B5FFCB38DE and /dev/null differ diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-24b-linux.yml similarity index 63% rename from .github/workflows/ci-linux.yml rename to .github/workflows/ci-24b-linux.yml index 27ea264b..fef5f95c 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-24b-linux.yml @@ -1,126 +1,120 @@ -# GitHub Actions Workflow with MATLAB Actions -# -# For a general overview of GitHub Actions, see -# https://docs.github.com/en/actions -# -# For using MathWorks products in GitHub Actions, see -# https://github.com/matlab-actions/overview -# -# For details about the syntax of this file, see -# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions - -# Copyright 2021-2025 The MathWorks, Inc. - -name: CI using MATLAB on Linux - -on: - push: - branches: [ R2024b ] - paths-ignore: - - 'docs/**' - - '**.md' - - '**.png' - - '**.svg' - - '**.txt' - - '**.xml' - - pull_request: - branches: [ R2024b ] - paths-ignore: - - 'docs/**' - - '**.md' - - '**.png' - - '**.svg' - - '**.txt' - - '**.xml' - -# schedule: -# - cron: '55/61 20/25 1/6 * *' # schedule a weekly-ish build - - workflow_dispatch: - -jobs: - - job-buildtool: - - runs-on: ubuntu-latest - - # Matrix strategy is used to run the job in various MATLAB versions. - # For information about matrix strategy, see the documentation. - # - Running variations of jobs in a workflow - # https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow - strategy: - matrix: - matlab_version: [R2024b] - #matlab_version: [R2024b, R2025a] - - name: Test in ${{ matrix.matlab_version }} on Linux - - permissions: - # required for sarif upload - security-events: write - checks: write # required for junit test result publishing - - steps: - - - name: Check out repository - uses: actions/checkout@v4 - - - name: Setup MATLAB ${{ matrix.matlab_version }} - uses: matlab-actions/setup-matlab@v2 - with: - release: ${{ matrix.matlab_version }} - cache: true - products: | - Simulink - Simscape - Simscape_Electrical - Simscape_Driveline - Powertrain_Blockset - - - name: Start display server for running headless Linux with graphics - run: | - sudo apt-get install xvfb - Xvfb :99 & - echo "DISPLAY=:99" >> $GITHUB_ENV - - - name: Run tests via buildtool using buildfile.m - uses: matlab-actions/run-command@v2 - with: - command: | - openProject(pwd); - buildtool CodeIssues CheckProject Test - - - name: Upload SARIF file - uses: github/codeql-action/upload-sarif@v3 - if: always() - with: - sarif_file: cache/buildtool-results/code-issues.sarif - category: matlab-analysis - - - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 - if: always() - with: - report_paths: 'cache/buildtool-results/test-results.xml' - - - name: Upload Test Report - if: always() - uses: actions/upload-artifact@v4 - with: - name: Test Results - path: cache/buildtool-results/test-results.pdf - - - name: Upload All Artifacts - if: always() - uses: actions/upload-artifact@v4 - with: - name: All Artifacts - path: cache/buildtool-results - - - name: Publish coverage - uses: 5monkeys/cobertura-action@master - continue-on-error: true - with: - path: cache/buildtool-results/code-coverage.xml - minimum_coverage: 75 +# GitHub Actions Workflow with MATLAB Actions +# +# For a general overview of GitHub Actions, see +# https://docs.github.com/en/actions +# +# For using MathWorks products in GitHub Actions, see +# https://github.com/matlab-actions/overview +# +# For details about the syntax of this file, see +# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions + +# Copyright 2021-2026 The MathWorks, Inc. + +name: Test using MATLAB R2024b on Linux + +on: + push: + branches: [ R2024b, R2024b-devel ] + paths-ignore: + - 'docs/**' + - '**.md' + - '**.png' + - '**.svg' + - '**.txt' + - '**.xml' + + pull_request: + branches: [ R2024b, R2024b-devel ] + paths-ignore: + - 'docs/**' + - '**.md' + - '**.png' + - '**.svg' + - '**.txt' + - '**.xml' + + workflow_dispatch: + +jobs: + + job-buildtool: + + runs-on: ubuntu-latest + + strategy: + matrix: + config: + - name: R2024b + file: buildfile_24b.m + + name: Test R2024b branch using MATLAB ${{ matrix.config.name }} on Linux + + permissions: + # required for sarif upload + security-events: write + checks: write # required for junit test result publishing + + steps: + + - name: Check out repository + uses: actions/checkout@v6 + + - name: Setup MATLAB ${{ matrix.config.name }} + uses: matlab-actions/setup-matlab@v2 + with: + release: ${{ matrix.config.name }} + cache: true + products: | + Simulink + Simscape + Simscape_Electrical + Simscape_Driveline + Powertrain_Blockset + + - name: Start display server for running headless Linux with graphics + run: | + sudo apt-get install xvfb + Xvfb :99 & + echo "DISPLAY=:99" >> $GITHUB_ENV + + - name: Run tests + uses: matlab-actions/run-command@v2 + with: + command: | + openProject(pwd); + buildtool -buildFile ${{ matrix.config.file }} -verbosity Verbose CodeIssues CheckProject Test + + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v4 + if: always() + with: + sarif_file: test-result-24b/code-issues.sarif + category: matlab-analysis + + - name: Publish Test Report + uses: mikepenz/action-junit-report@v4 + if: always() + with: + report_paths: 'test-result-24b/test-result.xml' + + - name: Upload Test Report + if: always() + uses: actions/upload-artifact@v4 + with: + name: Test Results + path: test-result-24b/test-result.pdf + + - name: Upload All Artifacts + if: always() + uses: actions/upload-artifact@v4 + with: + name: All Artifacts + path: test-result + + - name: Publish coverage + uses: 5monkeys/cobertura-action@master + continue-on-error: true + with: + path: test-result-24b/code-coverage.xml + minimum_coverage: 75 diff --git a/.github/workflows/ci-25b-linux.yml b/.github/workflows/ci-25b-linux.yml new file mode 100644 index 00000000..b6517132 --- /dev/null +++ b/.github/workflows/ci-25b-linux.yml @@ -0,0 +1,81 @@ +# GitHub Actions Workflow with MATLAB Actions +# +# For a general overview of GitHub Actions, see +# https://docs.github.com/en/actions +# +# For using MathWorks products in GitHub Actions, see +# https://github.com/matlab-actions/overview +# +# For details about the syntax of this file, see +# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions + +# Copyright 2021-2026 The MathWorks, Inc. + +name: Test using MATLAB R2025b on Linux + +on: + push: + branches: [ R2024b, R2024b-devel ] + paths-ignore: + - 'docs/**' + - '**.md' + - '**.png' + - '**.svg' + - '**.txt' + - '**.xml' + + pull_request: + branches: [ R2024b, R2024b-devel ] + paths-ignore: + - 'docs/**' + - '**.md' + - '**.png' + - '**.svg' + - '**.txt' + - '**.xml' + + workflow_dispatch: + +jobs: + + job-buildtool: + + runs-on: ubuntu-latest + + strategy: + matrix: + config: + - name: R2025b + file: buildfile_24b.m + + name: Test R2024b branch using MATLAB ${{ matrix.config.name }} on Linux + + steps: + + - name: Check out repository + uses: actions/checkout@v6 + + - name: Setup MATLAB ${{ matrix.config.name }} + uses: matlab-actions/setup-matlab@v2 + with: + release: ${{ matrix.config.name }} + cache: true + products: | + Simulink + Simscape + Simscape_Electrical + Simscape_Driveline + Powertrain_Blockset + + - name: Start display server for running headless Linux with graphics + run: | + sudo apt-get install xvfb + Xvfb :99 & + echo "DISPLAY=:99" >> $GITHUB_ENV + + - name: Run tests via buildtool using buildfile.m + uses: matlab-actions/run-command@v2 + with: + command: | + openProject(pwd); + buildtool -buildFile ${{ matrix.config.file }} -verbosity Verbose CodeIssues CheckProject Test diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index 7c95ad48..2f5923d3 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -9,13 +9,13 @@ # For details about the syntax of this file, see # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions -# Copyright 2025 The MathWorks, Inc. +# Copyright 2025-2026 The MathWorks, Inc. -name: CI using MATLAB on Windows +name: Test on Windows on: push: - branches: [ R2024b ] + branches: [ R2024b, R2024b-devel ] paths-ignore: - 'docs/**' - '**.md' @@ -25,7 +25,7 @@ on: - '**.xml' pull_request: - branches: [ R2024b ] + branches: [ R2024b, R2024b-devel ] paths-ignore: - 'docs/**' - '**.md' @@ -44,20 +44,19 @@ jobs: strategy: matrix: - matlab_version: [R2024b] - #matlab_version: [R2024b, R2025a] + matlab_release: [R2024b, latest] - name: Test in ${{ matrix.matlab_version }} on Windows + name: Test R2024b branch using MATLAB ${{ matrix.matlab_release }} on Windows steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - - name: Setup MATLAB ${{ matrix.matlab_version }} + - name: Setup MATLAB ${{ matrix.matlab_release }} uses: matlab-actions/setup-matlab@v2 with: - release: ${{ matrix.matlab_version }} + release: ${{ matrix.matlab_release }} cache: true products: | Simulink @@ -66,9 +65,9 @@ jobs: Simscape_Driveline Powertrain_Blockset - - name: Run buildtool using buildfile.m + - name: Run tests uses: matlab-actions/run-command@v2 with: command: | openProject(pwd); - buildtool CodeIssues CheckProject Test + buildtool -buildFile buildfile_24b.m -verbosity Verbose CodeIssues CheckProject Test diff --git a/BEV/BEV_system_model.mdl b/BEV/BEV_system_model.mdl index 0face3f3..96e0b313 100644 --- a/BEV/BEV_system_model.mdl +++ b/BEV/BEV_system_model.mdl @@ -50,8 +50,8 @@ __MWOPC_PART_BEGIN__ /metadata/coreProperties.xml Battery Electric Vehicle drive cycle simulation isaacito - 2024-11-20T07:58:36Z - 10.4 + 2026-01-28T13:45:25Z + 10.8 R2024b @@ -73,11 +73,11 @@ __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesReleaseInfo.xml - 24.2.0.2773142 + 24.2.0.3070828 R2024b - Update 2 - Oct 22 2024 - 227631694 + Update 7 + Oct 30 2025 + 2188856867 __MWOPC_PART_BEGIN__ /simulink/_rels/blockdiagram.xml.rels @@ -141,14 +141,14 @@ defineBus_Rotational

Active

win64

-

3219657557

-

397153425

-

SimDriveline|Simscape

+

3797519558

+

485709269

+

Simscape

%<Auto>

%<Auto>

-

%<AutoIncrement:10.4>

+

%<AutoIncrement:10.8>

off

@@ -2135,7 +2135,7 @@ __MWOPC_PART_BEGIN__ /simulink/graphicalInterface.json }, { "Path":"$bdroot\/High Voltage Battery", - "Reference":"BatteryHV_refsub_Basic", + "Reference":"BatteryHV_refsub_SystemSimple", "SID":"2177", "Type":"SUBSYSTEM_REFERENCE_BLOCK" }, @@ -2147,7 +2147,7 @@ __MWOPC_PART_BEGIN__ /simulink/graphicalInterface.json }, { "Path":"$bdroot\/Motor Drive Unit", - "Reference":"MotorDriveUnit_refsub_Basic", + "Reference":"MotorDriveUnit_refsub_BasicThermal", "SID":"50606", "Type":"SUBSYSTEM_REFERENCE_BLOCK" }, @@ -2180,7 +2180,7 @@ __MWOPC_PART_BEGIN__ /simulink/graphicalInterface.json }, { "BlockPath":"$bdroot\/High Voltage Battery", - "SubsystemName":"BatteryHV_refsub_Basic" + "SubsystemName":"BatteryHV_refsub_SystemSimple" }, { "BlockPath":"$bdroot\/Longitudinal Vehicle", @@ -2188,7 +2188,7 @@ __MWOPC_PART_BEGIN__ /simulink/graphicalInterface.json }, { "BlockPath":"$bdroot\/Motor Drive Unit", - "SubsystemName":"MotorDriveUnit_refsub_Basic" + "SubsystemName":"MotorDriveUnit_refsub_BasicThermal" }, { "BlockPath":"$bdroot\/Reduction Gear", @@ -2557,7 +2557,6 @@ __MWOPC_PART_BEGIN__ /simulink/plugins/LogicAnalyzerPlugin.xml ] } }

-

156343e0-a618-4864-8642-63ce31fd5147,aa13bc19-f9a3-4d54-b181-f1fe6034b5d7,e9352d6c-ed6c-4fc0-a8f1-2b48f34ec263,a61a4dd3-cfb1-452a-b5ec-28625e6957a5,633cb7fe-9c07-4f7b-a8d2-d1958567ce18,cabd2d8a-fe03-468d-9d90-6d0d6f5677a7,62c5d481-96ae-4bb4-8c7e-e9cff371b278,c9d0359c-2c3b-472f-aa9c-573c91284cf0,798db72f-c66f-4e4c-bf13-c11c17d9363a,3ad92900-4095-43b2-9adb-f2cc4ca12832,69db52ce-c1c2-4d77-9265-ec77c1c70ade,8626d831-2ff0-44d2-82e2-146e45931fc5,e830373f-755b-4f92-a31a-d7e0413e6539,1d6c5449-8385-4690-8a67-973a14b8cde8,90c9c0c2-f5fd-42a2-9497-697b81dd6c21,41499534-68c7-4b39-8f73-f942a880b09a,87f2814a-c84b-476b-b2c8-fc5997903e31,d81f4c3f-47fa-4701-a30f-8542d662cc32,8ca21251-f3f1-4fc2-ac74-49ae5da34738,17ca6eb7-7a28-4cc6-9a46-25e0afb1664d,09c136e4-9806-417f-aa92-a11d65704005,fe789493-94fc-47ab-bc59-d2b908cd999b,00efeadf-9f4b-45af-96ec-88ce4c023e9b,327ea723-58dc-48ae-b38e-e87d9692c8b6,440be714-d457-4a5b-8184-fd90cd78c83f,30b6ad56-b858-4766-b341-5e80314f48ea,43555446-eca9-4164-98f6-8da4960f096d,b4f07fd7-8361-4fc4-bfef-f31487630719,99866093-4e46-42fb-9949-68eeb0565cb1,65edf760-1505-45c5-a90c-c217cadc59bc,deed9973-ae8e-425f-877e-e40ec3b79cbd,ff490436-9df4-4fec-8a89-b51770aabc13,df832eda-374d-4b7b-9b78-c6a6cbd9286e,baf38c33-8cee-4517-96df-52a7c72db131,579a81b0-0516-4b0d-912c-d18f87df8ea2,69ffdc9a-dc2a-4b55-90ff-ae169515b02e,168ebb48-e6bc-4457-8df0-b0c629c22eb9,c1a03397-91d0-44f6-88e9-e0b150a9591c,d6c436b9-7ef8-493a-b20f-5de9154ac5b2,a64195e1-a049-4b99-b4e2-1073f68ff8d3,d8b0e262-b99f-4ee1-a9f5-a1df6b1d5a7d

__MWOPC_PART_BEGIN__ /simulink/plugins/NotesPlugin.xml @@ -2728,8 +2727,8 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1829.xml

[60, 60, 1200, 700]

0

-

{"entries":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":null,"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":{"content":{"attrsOfChildren":[{"type":"treeNode.ChildAttributes","uuid":"96c75b4c-e904-4e03-bf59-afc345aa3d38"},{"type":"treeNode.ChildAttributes","uuid":"90ef1a81-2fde-44c0-b3df-852c42f30e3f"},{"type":"treeNode.ChildAttributes","uuid":"211c0264-185b-4fe5-b51e-bc101c7ede48"},{"type":"treeNode.ChildAttributes","uuid":"1fd297e8-93a0-4f8c-a4ad-44504412fc1a"},{"type":"treeNode.ChildAttributes","uuid":"6f386d01-6dff-49aa-a010-c7c81756401b"}],"children":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"656a9fea-4017-4f2b-9a26-8a4ef43f8eea"},"indexOne":1,"name":"Current"},"type":"treeNode.ChildAttributes","uuid":"96c75b4c-e904-4e03-bf59-afc345aa3d38"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"362ccc72-7721-4f8a-8c9a-c05adaaf168f"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"656a9fea-4017-4f2b-9a26-8a4ef43f8eea"},"indexOne":2,"name":"Charge"},"type":"treeNode.ChildAttributes","uuid":"90ef1a81-2fde-44c0-b3df-852c42f30e3f"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"27f80613-8184-43dc-a986-807bf98b6140"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"656a9fea-4017-4f2b-9a26-8a4ef43f8eea"},"indexOne":3,"name":"Power"},"type":"treeNode.ChildAttributes","uuid":"211c0264-185b-4fe5-b51e-bc101c7ede48"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"kW"},"type":"treeNode.SignalAttributes","uuid":"214f73af-9eb5-4355-be3f-23aa16032b72"}},"type":"treeNode.TreeNode","uuid":"618ea345-ed35-43d9-8f59-56415642cc60"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"656a9fea-4017-4f2b-9a26-8a4ef43f8eea"},"indexOne":4,"name":"Temp"},"type":"treeNode.ChildAttributes","uuid":"1fd297e8-93a0-4f8c-a4ad-44504412fc1a"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"725b7154-b0a9-46fa-9d3e-0a27376ea30b"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"656a9fea-4017-4f2b-9a26-8a4ef43f8eea"},"indexOne":5,"name":"Voltage"},"type":"treeNode.ChildAttributes","uuid":"6f386d01-6dff-49aa-a010-c7c81756401b"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"2997f8e5-44a1-461f-a967-8fc5dfed670f"}]},"type":"treeNode.ParentAttributes","uuid":"656a9fea-4017-4f2b-9a26-8a4ef43f8eea"},"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"2e7b3a61-88cb-4180-be94-51ce1a466017"}],"packageUris":["http://schema.mathworks.com/mf0/mm_tree_node_datamodel/R2018b"],"version":"1.0"}

-

{"port-tree":{"bep-in":{"1":"2e7b3a61-88cb-4180-be94-51ce1a466017"}}}

+

{"entries":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":null,"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":{"content":{"attrsOfChildren":[{"type":"treeNode.ChildAttributes","uuid":"0e168050-b4d6-4a7e-a5a3-cfbe5f7db04b"},{"type":"treeNode.ChildAttributes","uuid":"7ec939a4-9528-40c6-a30f-43d3d2562563"},{"type":"treeNode.ChildAttributes","uuid":"d678c609-04bb-4689-b7c7-fe259c3c1561"},{"type":"treeNode.ChildAttributes","uuid":"737e64ef-08d3-4113-9060-fd8d8956d7d0"},{"type":"treeNode.ChildAttributes","uuid":"d9feb0f4-c182-48fd-9866-b1bc26265840"}],"children":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"a08a5499-3ed7-49fd-8ae6-1461cda38fe9"},"indexOne":1,"name":"Current"},"type":"treeNode.ChildAttributes","uuid":"0e168050-b4d6-4a7e-a5a3-cfbe5f7db04b"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"ce353a5b-0148-4267-b4cc-3a856ed18eb0"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"a08a5499-3ed7-49fd-8ae6-1461cda38fe9"},"indexOne":2,"name":"Charge"},"type":"treeNode.ChildAttributes","uuid":"7ec939a4-9528-40c6-a30f-43d3d2562563"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"ee85d395-fc54-4432-a7b3-fa1376d34f03"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"a08a5499-3ed7-49fd-8ae6-1461cda38fe9"},"indexOne":3,"name":"Power"},"type":"treeNode.ChildAttributes","uuid":"d678c609-04bb-4689-b7c7-fe259c3c1561"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"kW"},"type":"treeNode.SignalAttributes","uuid":"17dc86ae-c310-4c9f-8ade-f29cb01d99a6"}},"type":"treeNode.TreeNode","uuid":"27dfc495-f666-42e7-8e92-3a073ebe2c1c"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"a08a5499-3ed7-49fd-8ae6-1461cda38fe9"},"indexOne":4,"name":"Temp"},"type":"treeNode.ChildAttributes","uuid":"737e64ef-08d3-4113-9060-fd8d8956d7d0"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"d19f8661-f2f6-4497-9cbf-894172bf5848"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"a08a5499-3ed7-49fd-8ae6-1461cda38fe9"},"indexOne":5,"name":"Voltage"},"type":"treeNode.ChildAttributes","uuid":"d9feb0f4-c182-48fd-9866-b1bc26265840"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"9ce27904-b69c-42c7-af63-81d69d251279"}]},"type":"treeNode.ParentAttributes","uuid":"a08a5499-3ed7-49fd-8ae6-1461cda38fe9"},"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"16fc627b-156d-49bf-b63d-1e5682f27e80"}],"packageUris":["http://schema.mathworks.com/mf0/mm_tree_node_datamodel/R2018b"],"version":"1.0"}

+

{"port-tree":{"bep-in":{"1":"16fc627b-156d-49bf-b63d-1e5682f27e80"}}}

[1015, -50, 1025, -40]

@@ -3041,7 +3040,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1829.xml

[1210, -73, 1260, 183]

26261

-

Simulink.scopes.TimeScopeBlockCfg('CurrentConfiguration', extmgr.ConfigurationSet(extmgr.Configuration('Core','General UI',true),extmgr.Configuration('Core','Source UI',true),extmgr.Configuration('Sources','WiredSimulink',true,'DataLoggingVariableName','ScopeData1'),extmgr.Configuration('Visuals','Time Domain',true,'SerializedDisplays',{struct('MinYLimReal','-64.87908','MaxYLimReal','202.52993','YLabelReal','','MinYLimMag','0.00000','MaxYLimMag','202.52993','LegendVisibility','Off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',1,'LineNames',{{'Battery Current'}},'ShowContent',true,'Placement',1),struct('MinYLimReal','337.9747','MaxYLimReal','340.64879','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',1,'LineNames',{{'Battery Voltage'}},'ShowContent',true,'Placement',2),struct('MinYLimReal','122.83213','MaxYLimReal','123.60689','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',1,'LineNames',{{'Battery Charge'}},'ShowContent',true,'Placement',3),struct('MinYLimReal','193.15','MaxYLimReal','393.15','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',1,'LineNames',{{'Battery Temperature'}},'ShowContent',true,'Placement',4),struct('MinYLimReal','-2.63418','MaxYLimReal','23.70766','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',1,'LineNames',{{'Electrical Efficiency'}},'ShowContent',true,'Placement',5)},'DisplayPropertyDefaults',struct('YLabelReal','','AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[0.0745098039215686 0.623529411764706 1;1 0.411764705882353 0.16078431372549;1 1 0.0666666666666667;0.717647058823529 0.274509803921569 1;0.392156862745098 0.831372549019608 0.0745098039215686;0.0588235294117647 1 1;1 0.0745098039215686 0.650980392156863]),'DisplayLayoutDimensions',[5 1],'DisplayContentCache',[]),extmgr.Configuration('Tools','Plot Navigation',true,'PreviousZoomMode','Pan','AutoscaleMode','Auto','ExpandOnly',false),extmgr.Configuration('Tools','Measurements',true,'Version','2024b')),'Version','2024b','Position',[273.8 103.4 1084.8 516],'VisibleAtModelOpen','on')

+

Simulink.scopes.TimeScopeBlockCfg('CurrentConfiguration', extmgr.ConfigurationSet(extmgr.Configuration('Core','General UI',true),extmgr.Configuration('Core','Source UI',true),extmgr.Configuration('Sources','WiredSimulink',true,'DataLoggingVariableName','ScopeData1'),extmgr.Configuration('Visuals','Time Domain',true,'SerializedDisplays',{struct('MinYLimReal','-68.00994','MaxYLimReal','212.32643','YLabelReal','','MinYLimMag','0.00000','MaxYLimMag','212.32643','LegendVisibility','Off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',1),struct('MinYLimReal','322.37092','MaxYLimReal','324.99674','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',2),struct('MinYLimReal','122.79845','MaxYLimReal','123.61063','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',3),struct('MinYLimReal','19.0425','MaxYLimReal','28.61754','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',4),struct('MinYLimReal','-2.63485','MaxYLimReal','23.71361','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',5)},'DisplayPropertyDefaults',struct('YLabelReal','','AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[0.0745098039215686 0.623529411764706 1;1 0.411764705882353 0.16078431372549;1 1 0.0666666666666667;0.717647058823529 0.274509803921569 1;0.392156862745098 0.831372549019608 0.0745098039215686;0.0588235294117647 1 1;1 0.0745098039215686 0.650980392156863]),'DisplayLayoutDimensions',[5 1],'DisplayContentCache',[]),extmgr.Configuration('Tools','Plot Navigation',true,'PreviousZoomMode','Pan','AutoscaleMode','Auto','ExpandOnly',false),extmgr.Configuration('Tools','Measurements',true,'Version','2024b')),'Version','2024b','Position',[1212.33333333333 696.333333333333 673.333333333333 516],'VisibleAtModelOpen','on')

5

off

@@ -3049,7 +3048,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1829.xml

[710, -75, 745, 265]

26262

-

Simulink.scopes.TimeScopeBlockCfg('CurrentConfiguration', extmgr.ConfigurationSet(extmgr.Configuration('Core','General UI',true),extmgr.Configuration('Core','Source UI',true),extmgr.Configuration('Sources','WiredSimulink',true,'DataLoggingVariableName','ScopeData2'),extmgr.Configuration('Visuals','Time Domain',true,'SerializedDisplays',{struct('MinYLimReal','-8.75806','MaxYLimReal','78.75955','YLabelReal','','MinYLimMag','0.00000','MaxYLimMag','78.75955','LegendVisibility','Off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',2,'LineNames',{{'Vehicle Speeds.Reference Vehicle Speed (km/hr)','Vehicle Speeds.Vehicle Speed (km/hr)'}},'ShowContent',true,'Placement',1),struct('MinYLimReal','-621.78375','MaxYLimReal','5591.58064','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',2,'LineNames',{{'Motor Speeds.Reference Motor Speed (rpm)','Motor Speeds.Motor speed (rpm)'}},'ShowContent',true,'Placement',2),struct('MinYLimReal','-0.11157','MaxYLimReal','0.23299','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',1,'LineNames',{{'G-Force'}},'ShowContent',true,'Placement',3),struct('MinYLimReal','-84.6102','MaxYLimReal','223.58865','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',1,'LineNames',{{'Motor Torque Command'}},'ShowContent',true,'Placement',4),struct('MinYLimReal','193.15','MaxYLimReal','393.15','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',1,'LineNames',{{'Motor Temperature'}},'ShowContent',true,'Placement',5)},'DisplayPropertyDefaults',struct('YLabelReal','','AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[0.0745098039215686 0.623529411764706 1;1 0.411764705882353 0.16078431372549;1 1 0.0666666666666667;0.717647058823529 0.274509803921569 1;0.392156862745098 0.831372549019608 0.0745098039215686;0.0588235294117647 1 1;1 0.0745098039215686 0.650980392156863]),'DisplayLayoutDimensions',[5 1],'DisplayContentCache',[]),extmgr.Configuration('Tools','Plot Navigation',true,'AutoscaleMode','Auto','ExpandOnly',false),extmgr.Configuration('Tools','Measurements',true,'Version','2024b')),'Version','2024b','Position',[447.4 153 1086.4 518.4],'VisibleAtModelOpen','on')

+

Simulink.scopes.TimeScopeBlockCfg('CurrentConfiguration', extmgr.ConfigurationSet(extmgr.Configuration('Core','General UI',true),extmgr.Configuration('Core','Source UI',true),extmgr.Configuration('Sources','WiredSimulink',true,'DataLoggingVariableName','ScopeData2'),extmgr.Configuration('Visuals','Time Domain',true,'SerializedDisplays',{struct('MinYLimReal','-8.7582','MaxYLimReal','78.75957','YLabelReal','','MinYLimMag','0.00000','MaxYLimMag','78.75957','LegendVisibility','Off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',1),struct('MinYLimReal','-621.79368','MaxYLimReal','5591.58174','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',2),struct('MinYLimReal','-0.11156','MaxYLimReal','0.23289','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',3),struct('MinYLimReal','-84.61451','MaxYLimReal','223.62699','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',4),struct('MinYLimReal','19.9111','MaxYLimReal','20.80013','YLabelReal','','MinYLimMag','0','MaxYLimMag','10','LegendVisibility','off','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',5)},'DisplayPropertyDefaults',struct('YLabelReal','','AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[0.0745098039215686 0.623529411764706 1;1 0.411764705882353 0.16078431372549;1 1 0.0666666666666667;0.717647058823529 0.274509803921569 1;0.392156862745098 0.831372549019608 0.0745098039215686;0.0588235294117647 1 1;1 0.0745098039215686 0.650980392156863]),'DisplayLayoutDimensions',[5 1],'DisplayContentCache',[]),extmgr.Configuration('Tools','Plot Navigation',true,'AutoscaleMode','Auto','ExpandOnly',false),extmgr.Configuration('Tools','Measurements',true,'Version','2024b')),'Version','2024b','Position',[1255.66666666667 779.666666666667 664.666666666667 518.666666666667],'VisibleAtModelOpen','on')

5

off

@@ -3432,7 +3431,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

[60, 60, 1200, 700]

on

simulink-default.rpt

-

60404

+

61019

[-105, 195, -100, 225]

@@ -3469,6 +3468,14 @@ open_system(gcb, "force")

on

CtrlEnv_refsub_Basic

+ + +

FromPlant

+
+ +

Inputs

+
+
@@ -3541,12 +3548,22 @@ open_system(gcb, "force") open_system(gcb, "force")

on

-

BatteryHV_refsub_Basic

+

BatteryHV_refsub_SystemSimple

{"entries":[{"content":{"sides":[{"content":{"connectorIds":["In1"]},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"5db791d4-e733-413a-9b9b-d79e76ac9bb0"},{"content":{"connectorIds":["RConn1","RConn2","Out1"],"side":"RIGHT"},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"0c12beb5-1dc0-4de1-849a-92aaa1061486"},{"content":{"side":"TOP"},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"758dbf8c-c8ee-4b73-af05-227531b6198b"},{"content":{"side":"HIDDEN"},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"fa4920b8-ec2a-4218-a476-41d1e0d36381"}]},"type":"ConnectorPlacement.EquallySpacedConnector","uuid":"d828a3e3-8826-44df-b770-75b0ad7bf91b"}],"packageUris":["http://schema.mathworks.com/mf0/Connector/R2020b"],"version":"1.0"}

+ +

Inputs

+
+

Info

Battery

+ +

HighV

+
+ +

Pwr

+
@@ -3560,9 +3577,19 @@ open_system(gcb, "force")

Vehicle1D_refsub_Basic

{"entries":[{"content":{"sides":[{"content":{"connectorIds":["In1","LConn1"]},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"1278221b-4210-4fc4-9018-d7f4555b8d65"},{"content":{"connectorIds":["RConn1","Out1"],"side":"RIGHT"},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"ae02a7d1-22cf-4294-9907-02c3616e735c"},{"content":{"side":"TOP"},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"498bee53-b001-4331-968a-8dad39da1579"}]},"type":"ConnectorPlacement.EquallySpacedConnector","uuid":"c28a1585-5582-45c2-8974-ffffcb6069ab"}],"packageUris":["http://schema.mathworks.com/mf0/Connector/R2020b"],"version":"1.0"}

+ +

Inputs

+
+

Info

Veh

+ +

Axle

+
+ +

Spd

+
@@ -3585,22 +3612,32 @@ open_system(gcb, "force") open_system(gcb, "force")

on

-

MotorDriveUnit_refsub_Basic

+

MotorDriveUnit_refsub_BasicThermal

{"entries":[{"content":{"sides":[{"content":{"connectorIds":["In1","LConn1"]},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"67ecf7a6-5e47-4eb7-8bef-e90b74b30c45"},{"content":{"connectorIds":["RConn1","Out1"],"side":"RIGHT"},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"a9028cc8-cfc1-431e-b7d7-768ed50af379"},{"content":{"side":"TOP"},"type":"ConnectorPlacement.EquallySpacedRectSide","uuid":"a0687387-3123-4d08-86fe-456eeb37040f"}]},"type":"ConnectorPlacement.EquallySpacedConnector","uuid":"6bbfd8f6-f8bb-42c4-a351-7db31f6b96f0"}],"packageUris":["http://schema.mathworks.com/mf0/Connector/R2020b"],"version":"1.0"}

+ +

Ctrl

+
+

Info

Motor

+ +

HighV

+
+ +

Axle

+
- +

[205, -95, 315, -60]

26287

[0.011765, 0.011765, 0.011765]

[0.956863, 0.956863, 0.956863]

off

Helvetica

-

{"components":[{"name":"BackgroundImageComponent","settings":{"image":{"size":[0,0],"src":"default","srcOrientation":"Right"},"position":[0,0,1,1]}},{"name":"ButtonStateComponent","settings":{"buttonType":"momentary","clickFcn":"edit(\"BEV_main_script\")\n","onValue":1,"position":[0,0,1,1],"pressDelay":"500","pressFcn":"","repeatInterval":"0","states":[{"horizontalAlignment":"center","image":{"position":[0,0,1,1],"src":"default","srcOrientation":"Right"},"label":{"color":[0.01176470588,0.01176470588,0.01176470588,1],"icon":{"size":[0,0],"src":"default","srcOrientation":"Right"},"iconPlacement":"left","text":{"content":"Main script"}},"labelOffset":[0,0],"verticalAlignment":"middle"},{"horizontalAlignment":"center","image":{"position":[0,0,1,1],"src":"default","srcOrientation":"Right"},"label":{"color":[0.01176470588,0.01176470588,0.01176470588,1],"icon":{"size":[0,0],"src":"default","srcOrientation":"Right"},"iconPlacement":"left","text":{"content":"Main script"}},"labelOffset":[0,0],"verticalAlignment":"middle"},{"horizontalAlignment":"center","image":{"position":[0,0,1,1],"src":"default","srcOrientation":"Right"},"label":{"color":[0.01176470588,0.01176470588,0.01176470588,1],"icon":{"size":[0,0],"src":"default","srcOrientation":"Right"},"iconPlacement":"left","text":{"content":"Main script"}},"labelOffset":[0,0],"verticalAlignment":"middle"},{"horizontalAlignment":"center","image":{"position":[0,0,1,1],"src":"default","srcOrientation":"Right"},"label":{"color":[0.01176470588,0.01176470588,0.01176470588,1],"icon":{"size":[0,0],"src":"default","srcOrientation":"Right"},"iconPlacement":"left","text":{"content":"Main script"}},"labelOffset":[0,0],"verticalAlignment":"middle"}]}},{"name":"ForegroundImageComponent","settings":{"image":{"size":[0,0],"src":"default","srcOrientation":"Right"},"isForeground":1,"position":[0,0,1,1]}}],"settings":{"BindingType":"standalone","backgroundColor":[244,244,244,1],"backgroundOffset":0.2,"backgroundOpacity":1,"fixedAspectRatio":"off","foregroundColor":[0.01176470588,0.01176470588,0.01176470588,1],"migratedFromLegacy":true,"useBackgroundColor":true,"variant":"callback","version":"R2023a"},"type":"Button"}

+

{"components":[{"name":"BackgroundImageComponent","settings":{"image":{"size":[0,0],"src":"default","srcOrientation":"Right"},"position":[0,0,1,1]}},{"name":"ButtonStateComponent","settings":{"buttonType":"momentary","clickFcn":"edit(\"BEV_main_script\")\n","onValue":1,"position":[0,0,1,1],"pressDelay":"500","pressFcn":"","repeatInterval":"0","states":[{"horizontalAlignment":"center","image":{"position":[0,0,1,1],"size":[1,1],"src":"default","srcOrientation":"Right"},"label":{"color":[0.01176470588,0.01176470588,0.01176470588,1],"icon":{"size":[0,0],"src":"default","srcOrientation":"Right"},"iconOffset":0,"iconPlacement":"left","opacity":1,"show":true,"text":{"content":"Open script","font":"Helvetica"}},"labelOffset":[0,0],"verticalAlignment":"middle"},{"horizontalAlignment":"center","image":{"position":[0,0,1,1],"size":[1,1],"src":"default","srcOrientation":"Right"},"label":{"color":[0.01176470588,0.01176470588,0.01176470588,1],"icon":{"size":[0,0],"src":"default","srcOrientation":"Right"},"iconOffset":0,"iconPlacement":"left","opacity":1,"show":true,"text":{"content":"Open script","font":"Helvetica"}},"labelOffset":[0,0],"verticalAlignment":"middle"},{"horizontalAlignment":"center","image":{"position":[0,0,1,1],"size":[1,1],"src":"default","srcOrientation":"Right"},"label":{"color":[0.01176470588,0.01176470588,0.01176470588,1],"icon":{"size":[0,0],"src":"default","srcOrientation":"Right"},"iconOffset":0,"iconPlacement":"left","opacity":1,"show":true,"text":{"content":"Open script","font":"Helvetica"}},"labelOffset":[0,0],"verticalAlignment":"middle"},{"horizontalAlignment":"center","image":{"position":[0,0,1,1],"size":[1,1],"src":"default","srcOrientation":"Right"},"label":{"color":[0.01176470588,0.01176470588,0.01176470588,1],"icon":{"size":[0,0],"src":"default","srcOrientation":"Right"},"iconOffset":0,"iconPlacement":"left","opacity":1,"show":true,"text":{"content":"Open script","font":"Helvetica"}},"labelOffset":[0,0],"verticalAlignment":"middle"}]}},{"name":"ForegroundImageComponent","settings":{"image":{"size":[0,0],"src":"default","srcOrientation":"Right"},"isForeground":1,"position":[0,0,1,1]}}],"settings":{"BindingType":"standalone","backgroundColor":[244,244,244,1],"backgroundOffset":0.2,"backgroundOpacity":1,"fixedAspectRatio":"off","foregroundColor":[0.01176470588,0.01176470588,0.01176470588,1],"migratedFromLegacy":true,"useBackgroundColor":true,"variant":"callback","version":"R2023a"},"type":"Button"}

{"color":[0.9568627451,0.9568627451,0.9568627451],"show":true}

@@ -3639,12 +3676,20 @@ open_system(gcb, "force")

on

Reducer_refsub_Basic

+ + +

Motor

+
+ +

Axle

+
+

[785, -1, 815, 31]

26292

-

Simulink.scopes.TimeScopeBlockCfg('CurrentConfiguration', extmgr.ConfigurationSet(extmgr.Configuration('Core','General UI',true),extmgr.Configuration('Core','Source UI',true),extmgr.Configuration('Sources','WiredSimulink',true,'DataLoggingVariableName','ScopeData1'),extmgr.Configuration('Visuals','Time Domain',true),extmgr.Configuration('Tools','Plot Navigation',true),extmgr.Configuration('Tools','Measurements',true)),'Version','2023a')

+

Simulink.scopes.TimeScopeBlockCfg('CurrentConfiguration', extmgr.ConfigurationSet(extmgr.Configuration('Core','General UI',true),extmgr.Configuration('Core','Source UI',true),extmgr.Configuration('Sources','WiredSimulink',true,'DataLoggingVariableName','ScopeData1'),extmgr.Configuration('Visuals','Time Domain',true),extmgr.Configuration('Tools','Plot Navigation',true),extmgr.Configuration('Tools','Measurements',true)),'Version','2024b')

1

off

@@ -3844,7 +3889,7 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body align="left" style=" font-family:'Arial'; font-size:12px; font-weight:400; font-style:normal;"> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12px;">Copyright 2020-2023 The MathWorks, Inc.</span></p></body></html>

+<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12px;">Copyright 2020-2026 The MathWorks, Inc.</span></p></body></html>

[185, 230, 423, 243]

[0, 0, 0, 0]

on

@@ -3880,32 +3925,52 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

1

SimulinkTopLevel

0

-

[1345.0, 511.0]

+

[1614.0, 622.0]

1.0

-

[-221.5859375, -147.9]

-

[-221.5859375, -147.9, 1076.0, 408.8]

+

[-221.5859375, -150.83333333333334]

+

[-221.5859375, -150.83333333333334, 1076.0, 414.66666666666669]

0

0

SimulinkSubsys

2182:52319

-

[1345.0, 511.0]

+

[1614.0, 622.0]

1.0

-

[-362.578125, -145.9]

-

[-362.578125, -145.9, 1076.0, 408.8]

+

[-362.578125, -148.83333333333334]

+

[-362.578125, -148.83333333333334, 1076.0, 414.66666666666669]

0

0

SimulinkSubsys

2182

-

[1345.0, 511.0]

+

[1614.0, 622.0]

1.0

-

[169.66796875, -30.400000000000006]

-

[169.66796875, -30.400000000000006, 1076.0, 408.8]

+

[169.66796875, -33.333333333333343]

+

[169.66796875, -33.333333333333343, 1076.0, 414.66666666666669]

+

0

+

0

+

SimulinkSubsys

+

2182:52264:24

+

[1614.0, 622.0]

+

1.0

+

[-285.03515625, -135.83333333333334]

+

[-285.03515625, -135.83333333333334, 1076.0, 414.66666666666669]

+
+ +

0

+

0

+

SimulinkSubsys

+

2182:52264

+

[1614.0, 622.0]

+

1.0

+

[-154.921875, -47.333333333333343]

+

[-154.921875, -47.333333333333343, 1076.0, 414.66666666666669]

+
+

0

0

SimulinkSubsys

@@ -3915,7 +3980,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[61.73076923076917, 102.32417582417577]

[61.73076923076917, 102.32417582417577, 1182.4175824175825, 449.23076923076923]

- +

0

0

SimulinkSubsys

@@ -3925,7 +3990,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-177.72058823529414, 178.01470588235293]

[-177.72058823529414, 178.01470588235293, 1305.4411764705883, 495.97058823529414]

- +

0

0

SimulinkSubsys

@@ -3935,7 +4000,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-79.3984375, -11.900000000000006]

[-79.3984375, -11.900000000000006, 1076.0, 408.8]

- +

0

0

SimulinkSubsys

@@ -3945,7 +4010,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-411.3984375, -68.9]

[-411.3984375, -68.9, 1076.0, 408.8]

- +

0

0

SimulinkSubsys

@@ -3955,7 +4020,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[230.7734375, -101.5]

[230.7734375, -101.5, 1061.0, 408.0]

- +

0

0

SimulinkSubsys

@@ -3965,17 +4030,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-122.0, -90.5]

[-122.0, -90.5, 1061.0, 408.0]

- -

0

-

0

-

SimulinkSubsys

-

2182:52264

-

[1061.0, 408.0]

-

1.0

-

[-147.421875, -52.5]

-

[-147.421875, -52.5, 1061.0, 408.0]

-
- +

0

0

SimulinkSubsys

@@ -3985,7 +4040,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-152.83203125, 33.5]

[-152.83203125, 33.5, 1061.0, 408.0]

- +

0

0

SimulinkSubsys

@@ -3995,7 +4050,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-927.5859375, -419.0]

[-927.5859375, -419.0, 606.0, 448.0]

- +

0

0

SimulinkSubsys

@@ -4005,7 +4060,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-152.83203125, 33.5]

[-152.83203125, 33.5, 1061.0, 408.0]

- +

0

0

SimulinkSubsys

@@ -4015,7 +4070,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-927.5859375, -419.0]

[-927.5859375, -419.0, 1061.0, 408.0]

- +

0

0

SimulinkSubsys

@@ -4025,7 +4080,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-280.5, -135.5]

[-280.5, -135.5, 1061.0, 408.0]

- +

0

0

SimulinkSubsys

@@ -4035,7 +4090,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[40.58203125, 91.25]

[40.58203125, 91.25, 1061.0, 408.0]

- +

0

0

SimulinkSubsys

@@ -4045,16 +4100,6 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

[-152.390625, -72.5]

[-152.390625, -72.5, 1061.0, 408.0]

- -

0

-

0

-

SimulinkSubsys

-

2182:52264:24

-

[1061.0, 408.0]

-

1.0

-

[-276.83203125, -138.0]

-

[-276.83203125, -138.0, 1061.0, 408.0]

-

0

0

@@ -6355,8 +6400,8 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

1

Right

-

512

-

384

+

426

+

320

Unset

@@ -6368,16 +6413,16 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

0

Left

-

512

-

384

+

426

+

320

On

-

AAAA/wAAAAD9AAAAAwAAAAAAAAEBAAAB1fwCAAAABfsAAAAWAEQAbwBjAGsAVwBpAGQAZwBlAHQAMwEAAAAxAAAB+AAAAAAAAAAA+wAAABYARABvAGMAawBXAGkAZABnAGUAdAA0AAAAAAD/////AAAAAAAAAAD7AAAAUgBHAEwAVQBFADIAIAB0AHIAZQBlACAAYwBvAG0AcABvAG4AZQBuAHQALwBHAEwAVQBFADIAIAB0AHIAZQBlACAAYwBvAG0AcABvAG4AZQBuAHQAAAAAtQAAA1EAAAB5AP////wAAAB5AAAB1QAAAAAA////+gAAAAACAAAAAfsAAAB8AEwAaQBiAHIAYQByAHkAQgByAG8AdwBzAGUAcgAyACAATABpAGIAcgBhAHIAeQBCAHIAbwB3AHMAZQByAFMAdAB1AGQAaQBvAEMAbwBtAHAAbwBuAGUAbgB0AC8AQgBFAFYAXwBzAHkAcwB0AGUAbQBfAG0AbwBkAGUAbAAAAAAA/////wAAAAAAAAAA+wAAAGAAUwBpAG0AdQBsAGkAbgBrADoARQBkAGkAdABvAHIAOgBSAGUAZgBlAHIAZQBuAGMAZQBkAEYAaQBsAGUAcwAvAFIAZQBmAGUAcgBlAG4AYwBlAGQAIABGAGkAbABlAHMAAAAAAP////8AAACnAP///wAAAAEAAAJ5AAACRvwCAAAAAfwAAACXAAACRgAAAAAA////+gAAAAECAAAAAvsAAABUAEcATABVAEUAMgA6AFAAcgBvAHAAZQByAHQAeQBJAG4AcwBwAGUAYwB0AG8AcgAvAFAAcgBvAHAAZQByAHQAeQAgAEkAbgBzAHAAZQBjAHQAbwByAgAABGwAAAC3AAACeQAAAkb7AAAAXgBHAEwAVQBFADIAOgBOAG8AdABlAHMAIABCAHIAbwB3AHMAZQByACAAQwBvAG0AcABvAG4AZQBuAHQALwBTAHkAcwBEAG8AYwBNAGkAeABlAGQARQBkAGkAdABvAHIAAAAAAP////8AAAAAAAAAAAAAAAMAAAAAAAAAAPwBAAAAAfv/////AAAAAAD/////AAADFgD///8AAAVuAAACRgAAAAEAAAACAAAAAQAAAAL8AAAABAAAAAAAAAABAAAANgBjAG8AbABsAGEAcABzAGkAYgBsAGUAUABhAG4AZQBsAFQAbwBvAGwAQgBhAHIATABlAGYAdAMAAAAA/////wAAAAAAAAAAAAAAAQAAAAEAAAA4AGMAbwBsAGwAYQBwAHMAaQBiAGwAZQBQAGEAbgBlAGwAVABvAG8AbABCAGEAcgBSAGkAZwBoAHQCAAAAAP////8AAAAAAAAAAAAAAAIAAAAAAAAAAwAAAAEAAAA6AGMAbwBsAGwAYQBwAHMAaQBiAGwAZQBQAGEAbgBlAGwAVABvAG8AbABCAGEAcgBCAG8AdAB0AG8AbQAAAAAA/////wAAAAAAAAAA

+

AAAA/wAAAAD9AAAAAwAAAAAAAAEBAAAB1fwCAAAABfsAAAAWAEQAbwBjAGsAVwBpAGQAZwBlAHQAMwEAAAAxAAAB+AAAAAAAAAAA+wAAABYARABvAGMAawBXAGkAZABnAGUAdAA0AAAAAAD/////AAAAAAAAAAD7AAAAUgBHAEwAVQBFADIAIAB0AHIAZQBlACAAYwBvAG0AcABvAG4AZQBuAHQALwBHAEwAVQBFADIAIAB0AHIAZQBlACAAYwBvAG0AcABvAG4AZQBuAHQAAAAAtQAAA1EAAACTAP////wAAAB5AAAB1QAAAAAA////+gAAAAACAAAAAfsAAAB8AEwAaQBiAHIAYQByAHkAQgByAG8AdwBzAGUAcgAyACAATABpAGIAcgBhAHIAeQBCAHIAbwB3AHMAZQByAFMAdAB1AGQAaQBvAEMAbwBtAHAAbwBuAGUAbgB0AC8AQgBFAFYAXwBzAHkAcwB0AGUAbQBfAG0AbwBkAGUAbAAAAAAA/////wAAAAAAAAAA+wAAAGAAUwBpAG0AdQBsAGkAbgBrADoARQBkAGkAdABvAHIAOgBSAGUAZgBlAHIAZQBuAGMAZQBkAEYAaQBsAGUAcwAvAFIAZQBmAGUAcgBlAG4AYwBlAGQAIABGAGkAbABlAHMAAAAAAP////8AAADHAP///wAAAAEAAAJ5AAACRvwCAAAAAfwAAACXAAACRgAAAAAA////+gAAAAECAAAAAvsAAABUAEcATABVAEUAMgA6AFAAcgBvAHAAZQByAHQAeQBJAG4AcwBwAGUAYwB0AG8AcgAvAFAAcgBvAHAAZQByAHQAeQAgAEkAbgBzAHAAZQBjAHQAbwByAgAABGwAAAC3AAACeQAAAoD7AAAAXgBHAEwAVQBFADIAOgBOAG8AdABlAHMAIABCAHIAbwB3AHMAZQByACAAQwBvAG0AcABvAG4AZQBuAHQALwBTAHkAcwBEAG8AYwBNAGkAeABlAGQARQBkAGkAdABvAHIAAAAAAP////8AAAAAAAAAAAAAAAMAAAAAAAAAAPwBAAAAAfv/////AAAAAAD/////AAADswD///8AAAaGAAACvAAAAAEAAAACAAAAAQAAAAL8AAAABAAAAAAAAAABAAAANgBjAG8AbABsAGEAcABzAGkAYgBsAGUAUABhAG4AZQBsAFQAbwBvAGwAQgBhAHIATABlAGYAdAMAAAAA/////wAAAAAAAAAAAAAAAQAAAAEAAAA4AGMAbwBsAGwAYQBwAHMAaQBiAGwAZQBQAGEAbgBlAGwAVABvAG8AbABCAGEAcgBSAGkAZwBoAHQCAAAAAP////8AAAAAAAAAAAAAAAIAAAAAAAAAAwAAAAEAAAA6AGMAbwBsAGwAYQBwAHMAaQBiAGwAZQBQAGEAbgBlAGwAVABvAG8AbABCAGEAcgBCAG8AdAB0AG8AbQAAAAAA/////wAAAAAAAAAA

758d041b-2a89-446a-a178-7700d6a6ccba

-

b132cf8d-a3b5-4bee-9e27-ed95e0647671

+

01e8a836-02a1-402c-91ba-e39412820d67

diff --git a/BEV/SimulationCases/BEV_Case_Constant_Basic.mlx b/BEV/SimulationCases/BEV_Case_Constant_Basic.mlx index 61f0dc4a..3635a022 100644 Binary files a/BEV/SimulationCases/BEV_Case_Constant_Basic.mlx and b/BEV/SimulationCases/BEV_Case_Constant_Basic.mlx differ diff --git a/BEV/SimulationCases/BEV_Case_Constant_Thermal.mlx b/BEV/SimulationCases/BEV_Case_Constant_Thermal.mlx index 430c17ef..470aaa0d 100644 Binary files a/BEV/SimulationCases/BEV_Case_Constant_Thermal.mlx and b/BEV/SimulationCases/BEV_Case_Constant_Thermal.mlx differ diff --git a/BEV/SimulationCases/BEV_Case_FTP75_Basic.mlx b/BEV/SimulationCases/BEV_Case_FTP75_Basic.mlx index f3e6e8c9..d5a092f4 100644 Binary files a/BEV/SimulationCases/BEV_Case_FTP75_Basic.mlx and b/BEV/SimulationCases/BEV_Case_FTP75_Basic.mlx differ diff --git a/BEV/SimulationCases/BEV_Case_HighSpeed_Basic.mlx b/BEV/SimulationCases/BEV_Case_HighSpeed_Basic.mlx index aeb4c285..aac4ad18 100644 Binary files a/BEV/SimulationCases/BEV_Case_HighSpeed_Basic.mlx and b/BEV/SimulationCases/BEV_Case_HighSpeed_Basic.mlx differ diff --git a/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Basic.mlx b/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Basic.mlx index c398460e..a93cae54 100644 Binary files a/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Basic.mlx and b/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Basic.mlx differ diff --git a/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Thermal.mlx b/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Thermal.mlx index a005bfbc..6ce9cec2 100644 Binary files a/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Thermal.mlx and b/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Thermal.mlx differ diff --git a/BEV/Utility/Images/BEV_system_model_screenshot.png b/BEV/Utility/Images/BEV_system_model_screenshot.png index c8293319..a51b6478 100644 Binary files a/BEV/Utility/Images/BEV_system_model_screenshot.png and b/BEV/Utility/Images/BEV_system_model_screenshot.png differ diff --git a/BEV/results/BEV_SimulationResultPlot.png b/BEV/results/BEV_SimulationResultPlot.png index 00ead679..a8d4118b 100644 Binary files a/BEV/results/BEV_SimulationResultPlot.png and b/BEV/results/BEV_SimulationResultPlot.png differ diff --git a/BEV/results/BEV_SimulationResult_1.csv b/BEV/results/BEV_SimulationResult_1.csv index 52e5b559..1bf01440 100644 --- a/BEV/results/BEV_SimulationResult_1.csv +++ b/BEV/results/BEV_SimulationResult_1.csv @@ -235,4437 +235,4417 @@ Time,HV Battery SOC (%),HV Battery Power (kW),HV Battery Current (A),G-Force (1) 00:00:10.8862,69.9995065743888,2.93000810284009,8.61767089070615,0.0875115508474181,1.70884973558703 00:00:10.9089,69.9994755081572,2.99130625083537,8.7979595612805,0.08770279066772,1.77898249571239 00:00:10.9316,69.9994438627756,3.04030241073312,8.94206591392095,0.0876448322001123,1.84917005653667 -00:00:10.9402,69.9994317354382,3.05745206261366,8.99250606651077,0.0875969785358132,1.87576720330738 -00:00:10.9402,69.9994317354382,3.05747295181084,8.99256750532599,0.087596978512383,1.87576720330773 -00:00:10.9486,69.9994197135049,3.06648596752815,9.0190763750828,0.0873893819104965,1.90190188774391 -00:00:10.9566,69.9994084257215,3.07139009600936,9.03350028238048,0.0871250961715499,1.92632731775447 -00:00:10.9678,69.9993923601938,3.07644824223489,9.04837718304378,0.0867168358099701,1.96087143225122 -00:00:10.9791,69.9993762745122,3.08186541562146,9.06431004594548,0.0863224825404709,1.99530281208924 -00:00:11.0000,69.9993464610998,3.10079227667244,9.11997728433071,0.0857932711598479,2.05857770457973 -00:00:11.0008,69.9993451855264,3.10252330783539,9.12506855245702,0.085789970368684,2.06126945276007 -00:00:11.0017,69.9993439087297,3.10594358541618,9.13512819240054,0.0858211654730239,2.06396171104881 -00:00:11.0031,69.9993418728184,3.11662629220004,9.16654791823542,0.085977544368325,2.06824934742532 -00:00:11.0046,69.9993398275199,3.13432567854142,9.21860493688652,0.0862760907900324,2.0725484578353 -00:00:11.0060,69.9993377683268,3.15916478711784,9.29166113858189,0.0867180177093165,2.07686600605371 -00:00:11.0074,69.9993356906919,3.19083792665523,9.3848174313389,0.0872954384839139,2.08120891654226 -00:00:11.0102,69.9993315066442,3.2716186372058,9.62240775648765,0.0887886062827898,2.08990383071885 -00:00:11.0156,69.9993229925781,3.48751927055508,10.2574096192796,0.0927713270081674,2.10733891631297 -00:00:11.0210,69.9993138523392,3.77018793515621,11.0887880445771,0.0978661377635,2.12564130198788 -00:00:11.0265,69.9993039442845,4.10272276864535,12.0668316724863,0.103651303328301,2.14497711523351 -00:00:11.0319,69.999293165062,4.46721932117857,13.1388803564075,0.109738080759041,2.16544337490243 -00:00:11.0373,69.9992814567058,4.8452742409618,14.2508065910641,0.11578543557672,2.18706744094158 -00:00:11.0428,69.9992688075381,5.21870915742937,15.3491445806746,0.121506320111423,2.2098157214375 -00:00:11.0482,69.9992552500539,5.57057587217064,16.3840466828548,0.126671496267743,2.23360473385645 -00:00:11.0536,69.999240856289,5.88623664593933,17.312460723351,0.131111358418925,2.25831262742819 -00:00:11.0591,69.9992257308334,6.15428874175093,18.1008492404439,0.134715314506781,2.28379062945943 -00:00:11.0660,69.9992056157233,6.4155262306971,18.8691947961679,0.138018221851839,2.31709570992724 -00:00:11.0748,69.9991790655869,6.61318351651343,19.4505397544512,0.140194271652153,2.36037160451367 -00:00:11.0836,69.9991519937164,6.66915846237481,19.6151719481612,0.140332229279979,2.40401541140667 -00:00:11.0924,69.9991249138578,6.61013859884888,19.4415841142614,0.13884937482115,2.44746616601367 -00:00:11.1013,69.9990982183486,6.47296106337999,19.038120774647,0.136263280372159,2.49030015989634 -00:00:11.1101,69.9990721479029,6.29664241074274,18.5195365021845,0.133112604072263,2.53225609261369 -00:00:11.1189,69.9990467941137,6.11605147600873,17.9883866941433,0.129888957978563,2.57323204384812 -00:00:11.1277,69.9990221230522,5.95817066982087,17.5240313818261,0.126988449682409,2.61326359072166 -00:00:11.1366,69.9989980094099,5.84076328581926,17.1787155465272,0.124684992101959,2.65249032622338 -00:00:11.1454,69.9989742729014,5.77274086825987,16.978649612529,0.12312385811472,2.69111725877928 -00:00:11.1576,69.9989416345768,5.76004226032068,16.9413007656491,0.122197065029356,2.7440553789765 -00:00:11.1698,69.9989088473447,5.82792030126547,17.1409420625455,0.122484084433069,2.79684721215758 -00:00:11.1820,69.9988755337266,5.95214141486976,17.5062982790287,0.123597333235953,2.84992094796877 -00:00:11.1942,69.9988414575852,6.10378341093033,17.9523041497951,0.125085469736358,2.90353520860232 -00:00:11.2064,69.9988065384882,6.25545822499318,18.3984065440976,0.126539643319873,2.95776770080717 -00:00:11.2186,69.998770830154,6.38639572872763,18.7835168491989,0.127666873232412,3.0125468433436 -00:00:11.2308,69.9987344761993,6.48527375618083,19.0743345770024,0.128320377482279,3.06770653358202 -00:00:11.2464,69.9986873991062,6.56433203612608,19.3068589297826,0.128480454263939,3.1383913331374 -00:00:11.2620,69.998639885542,6.60334245479211,19.4215954552709,0.128083199137286,3.20902280232238 -00:00:11.2776,69.9985921430582,6.62302064051483,19.4794724721025,0.127426707733383,3.27938263158692 -00:00:11.2932,69.9985442405309,6.64361689065999,19.5400496784117,0.126794453818538,3.34940302369607 -00:00:11.3088,69.9984961280814,6.67888450227765,19.6437779478754,0.126374689414888,3.41914213551527 -00:00:11.3244,69.9984476885074,6.7338584226965,19.8054659491073,0.12623180472992,3.48872732970577 -00:00:11.3505,69.998365514388,6.85707924772444,20.167880140366,0.126419472848297,3.60523943158342 -00:00:11.3766,69.998281786465,6.99574850134665,20.5757308863137,0.126807521278176,3.72198563301412 -00:00:11.4027,69.9981964669928,7.12573701424889,20.9580500419085,0.127069565171368,3.83899857490306 -00:00:11.4288,69.9981096938365,7.23789032592389,21.2879127233056,0.127091931230752,3.95613384929537 -00:00:11.4654,69.9979860485857,7.37877477013716,21.7022787356975,0.126916031740583,4.12005393878352 -00:00:11.5000,69.9978668962262,7.51254821493063,22.0957300439136,0.126763573122229,4.27489238775603 -00:00:11.5014,69.9978617396805,7.52107659295433,22.1208135086892,0.12679272995216,4.28152651957811 -00:00:11.5029,69.9978565752374,7.53561922801009,22.1635859647356,0.126898277762962,4.28816416243466 -00:00:11.5051,69.997849090301,7.57071897540934,22.2668205159098,0.127229057464265,4.29776886160737 -00:00:11.5072,69.9978415622471,7.62253169652041,22.4192108721189,0.127769792310293,4.30740654319975 -00:00:11.5093,69.9978339753541,7.68994304377145,22.6174795405043,0.128504226397306,4.31709218144918 -00:00:11.5128,69.9978214998207,7.82765991342044,23.0225291571189,0.130040691696075,4.33294656540173 -00:00:11.5190,69.997798636559,8.14096279741183,23.9440082276819,0.133570754586405,4.36172973395319 -00:00:11.5252,69.9977747868778,8.52038044212664,25.0599424768431,0.137816034097689,4.39135597128258 -00:00:11.5313,69.9977498081936,8.93712747072559,26.2856690315459,0.142393104714596,4.42193508800947 -00:00:11.5375,69.9977236316315,9.36359882344026,27.5399965395302,0.146962110127401,4.45350458264751 -00:00:11.5437,69.9976962631656,9.77483320986894,28.749509440791,0.151241575144386,4.48603431226989 -00:00:11.5499,69.997667775104,10.1496941937883,29.852041746436,0.155014358255693,4.51943911290411 -00:00:11.5561,69.9976382934279,10.4718741229097,30.7996297732637,0.158129405834621,4.55359329591396 -00:00:11.5641,69.9975985882038,10.7960867895864,31.7531964399599,0.161071135286874,4.59906111305891 -00:00:11.5746,69.9975458765176,11.0462124722421,32.4888602124767,0.162995204813077,4.65874329034492 -00:00:11.5850,69.9974923731766,11.1208024408457,32.7082424730756,0.163032708764949,4.71879553290155 -00:00:11.5955,69.9974388141597,11.0592245352267,32.5271309859608,0.161633657262221,4.77861748205654 -00:00:11.6059,69.9973857261286,10.9145452483352,32.1016036715742,0.159364121646419,4.83778510673639 -00:00:11.6163,69.9973333832646,10.7407520867494,31.5904473139689,0.156793377540392,4.89607978004992 -00:00:11.6268,69.9972818234007,10.5830214738984,31.1265337467601,0.154402602397045,4.95347441268566 -00:00:11.6372,69.9972309011057,10.4724980575955,30.8014648752809,0.152528925588718,5.0100917389981 -00:00:11.6477,69.9971803568083,10.4250897306044,30.6620286194247,0.151346122563982,5.06614870202896 -00:00:11.6614,69.9971138950145,10.4591442172781,30.7621888743475,0.150840966310666,5.13949037568507 -00:00:11.6751,69.9970469480956,10.5819398040171,31.1233523647563,0.151290472325646,5.21280668512099 -00:00:11.6889,69.9969790743744,10.7587308041831,31.6433258946562,0.152302972219944,5.2864556072699 -00:00:11.7026,69.996910050978,10.9513265484606,32.2097839660605,0.153460965745201,5.36061038457965 -00:00:11.7163,69.9968398715378,11.1279597423514,32.7292933598571,0.154430204078688,5.43526690690853 -00:00:11.7301,69.996768688935,11.2695281198812,33.145670940827,0.1550200033423,5.51029536628815 -00:00:11.7475,69.9966772283304,11.3937114533726,33.5109160393312,0.155186716110227,5.60580409261329 -00:00:11.7692,69.9965623044749,11.4887942559111,33.790571340915,0.154787472673025,5.72457667249785 -00:00:11.7909,69.9964464975589,11.5601245293698,34.0003662628525,0.15415782929031,5.84299236467782 -00:00:11.8126,69.9963298542795,11.6469399203257,34.2557056480168,0.153696808817529,5.96102216762706 -00:00:11.8344,69.9962121598776,11.7665476680464,34.607493141313,0.153572054985008,6.0788373290376 -00:00:11.8633,69.9960533293458,11.9630544384896,35.1854542308518,0.153776061051383,6.23575175719745 -00:00:11.8922,69.9958918430071,12.1705827833441,35.7958317157179,0.154080642265965,6.39288855743088 -00:00:11.9211,69.9957277202044,12.3628505626648,36.3613251843083,0.154229052176437,6.55022788837896 -00:00:11.9500,69.9955611626746,12.5349836864418,36.8675990777699,0.154181318462134,6.70761701148099 -00:00:12.0000,69.9952678488145,12.8226785077355,37.713760316869,0.154009202491586,6.97956221764488 -00:00:12.0023,69.9952538051219,12.841548444491,37.7692601308559,0.15405063889026,6.99242106054173 -00:00:12.0047,69.9952397347566,12.8718673929883,37.8584335087891,0.154199284084826,7.00528764789975 -00:00:12.0076,69.9952220879199,12.9287069601858,38.0256087064289,0.154561619961442,7.02139670126564 -00:00:12.0106,69.9952043502799,13.0050929384687,38.2502733484373,0.155104683415893,7.03755275224318 -00:00:12.0147,69.9951795785573,13.1374433410312,38.6395392383269,0.156098816935689,7.06004623596354 -00:00:12.0228,69.9951293267701,13.4633756662075,39.5981637241397,0.158627904637666,7.10539395111099 -00:00:12.0310,69.995077757004,13.8407106249179,40.7079724262291,0.161580295837286,7.15152353721175 -00:00:12.0391,69.9950247617391,14.2277458991345,41.8463114680427,0.164566151204682,7.19849587092452 -00:00:12.0473,69.9949703670127,14.5890099852673,42.9088528978451,0.167270263065184,7.2462787486577 -00:00:12.0555,69.9949147149245,14.8980475359801,43.8177868705298,0.169471138518711,7.29476300554864 -00:00:12.0657,69.9948437326165,15.1871515086389,44.6680926724673,0.171332658284844,7.35610879930125 -00:00:12.0789,69.9947497708412,15.3975083369244,45.2867892262483,0.172285386926804,7.43665670877655 -00:00:12.0922,69.994654990747,15.4477174613452,45.4344631216035,0.171852357921594,7.51733968191898 -00:00:12.1055,69.9945601817522,15.3935922686111,45.2752713782679,0.170532394495719,7.59763907855035 -00:00:12.1188,69.9944657842996,15.3003447586424,45.0010139960071,0.168890458353539,7.67727090012706 -00:00:12.1321,69.994371876484,15.2242167088814,44.7771079672982,0.167409761639142,7.75619040769921 -00:00:12.1454,69.9942782565109,15.2014092708785,44.7100272672896,0.166399304537796,7.83453602569376 -00:00:12.1587,69.9941845697155,15.2452421949955,44.8389476323397,0.165968452787624,7.91254462574478 -00:00:12.1783,69.9940452174936,15.4090460733472,45.3207237451387,0.166180402348736,8.02770837050869 -00:00:12.1979,69.9939041199886,15.6398287974175,45.9994964629927,0.166950109874881,8.14318022792358 -00:00:12.2175,69.9937609651407,15.8755671782399,46.692844641882,0.167744189194704,8.25915344158166 -00:00:12.2372,69.9936158767288,16.0735815036439,47.2752397165996,0.168209958571375,8.37554020462336 -00:00:12.2568,69.9934692184186,16.2219610407545,47.711650119866,0.168259583738782,8.49210424254141 -00:00:12.2855,69.9932527148396,16.3873492250101,48.1980859559122,0.167912447262929,8.66237655852011 -00:00:12.3142,69.9930339947622,16.543984496629,48.6587779312617,0.167503676333472,8.83231544541277 -00:00:12.3429,69.9928129382774,16.7307936919214,49.2082167409451,0.167346004999304,9.00200115781479 -00:00:12.3716,69.9925891902934,16.9497289621724,49.8521440063894,0.167446297437984,9.1716546019625 -00:00:12.4122,69.9922668530668,17.2708436007511,50.7965988257386,0.167666430997877,9.41243988739236 -00:00:12.4529,69.9919387012958,17.5746309202438,51.6900909418935,0.167744837777982,9.65339684180573 -00:00:12.4936,69.9916050136564,17.8589164226622,52.5262247725359,0.167671825667897,9.8943571662629 -00:00:12.5000,69.9915526558968,17.901654232209,52.6519242123793,0.167649564589013,9.93180793127365 -00:00:12.5285,69.9913149134359,18.0988363790686,53.231871703143,0.167583824286625,10.1006840217317 -00:00:12.5891,69.9908011694487,18.5352950612773,54.5155737096391,0.167579440126589,10.459221378475 -00:00:12.6750,69.9900509175195,19.1637955519212,56.3641045644742,0.167636854607231,10.9681080996372 -00:00:12.7728,69.9891676995568,19.8706796731587,58.4431755092902,0.167640897521014,11.5468050409025 -00:00:12.8728,69.9882311247901,20.590505299556,60.5603097045765,0.167619269332459,12.138791872367 -00:00:12.9728,69.9872611048319,21.3137356985397,62.6874579368814,0.167618581887119,12.7307616269004 -00:00:13.0000,69.9869916758469,21.5109862252908,63.267606544973,0.167622393778455,12.8916528031492 -00:00:13.0026,69.9869651252382,21.519891397086,63.2937982267234,0.167553732921674,12.9074287724091 -00:00:13.0053,69.9869385775408,21.5082375501569,63.2595222063439,0.167349335204589,12.9231912740829 -00:00:13.0079,69.9869120591362,21.4728311124103,63.1553856247362,0.166988274113962,12.9389270320714 -00:00:13.0106,69.9868855975925,21.415426247195,62.9865477858678,0.166482192875484,12.9546221796698 -00:00:13.0150,69.9868421687706,21.2827593807641,62.5963511198945,0.165397142045885,12.9803727596932 -00:00:13.0236,69.9867585721748,20.9365874398883,61.5781983526125,0.162703845779338,13.0299339614209 -00:00:13.0321,69.9866764522265,20.5279528286802,60.3763318490596,0.159594206794184,13.0786275158523 -00:00:13.0407,69.9865959157007,20.1226657206471,59.1843109430796,0.156504469179246,13.1263988835039 -00:00:13.0492,69.9865168576715,19.7716479360794,58.1519056943513,0.153778327321855,13.1733015606182 -00:00:13.0578,69.9864390066061,19.5082919954505,57.3773293983838,0.151645690865881,13.2194753762555 -00:00:13.0686,69.9863415464546,19.3242623816565,56.8360658284014,0.149963146197622,13.2772128165635 -00:00:13.0825,69.986216900598,19.3181310669612,56.8180325498858,0.149371310859409,13.3508557814949 -00:00:13.0965,69.9860916760593,19.5154339866426,57.3983352548313,0.150155428733255,13.4245261334272 -00:00:13.1104,69.9859648689631,19.8293850725427,58.3217208015962,0.151709933341388,13.4987369652671 -00:00:13.1243,69.9858360165115,20.1687440224851,59.3198353602502,0.153411271341727,13.5737170307088 -00:00:13.1382,69.9857051697813,20.461002505812,60.1794191347411,0.154778232617741,13.6494307880855 -00:00:13.1521,69.9855727382744,20.6659127631968,60.7820963623436,0.15555485429216,13.7256634973488 -00:00:13.1690,69.9854108818593,20.7930088929853,61.1559085087802,0.15569340498365,13.8183628251289 -00:00:13.1859,69.9852483745899,20.8238919272806,61.2467409625899,0.155205046760639,13.9109755755225 -00:00:13.2028,69.9850857307019,20.8151480155356,61.2210235751048,0.154465063391029,14.0032475530528 -00:00:13.2196,69.984923066566,20.8187796133615,61.2317047451808,0.153812830633351,14.0951245684027 -00:00:13.2365,69.9847601853603,20.8658402189901,61.3701182911474,0.153447662612452,14.1867075986343 -00:00:13.2589,69.9845431902256,20.9997663114555,61.7640185631044,0.153428211371622,14.3080358001695 -00:00:13.2865,69.984272969741,21.2258555181277,62.4289868180227,0.153790873616084,14.4580039153426 -00:00:13.3142,69.9839999238245,21.4556988490248,63.1049966147789,0.154169894342504,14.6082886939284 -00:00:13.3418,69.9837242337645,21.6477613696531,63.6698863813326,0.154304251712172,14.7587977266413 -00:00:13.3755,69.9833853130037,21.8361524089831,64.2239776734798,0.154180209218357,14.9422148894917 -00:00:13.4166,69.9829680670956,22.0557723808068,64.8699187670788,0.153969920587377,15.1656745889136 -00:00:13.4576,69.982546324218,22.3002846714522,65.5890725630947,0.153916754507779,15.3889832236456 -00:00:13.5000,69.9821066198489,22.5748763978003,66.3966952876479,0.153999772217432,15.6191312706852 -00:00:13.5014,69.982091541031,22.5794044558413,66.4100131054155,0.15397321705687,15.6269765692726 -00:00:13.5028,69.9820764629455,22.5722347827806,66.3889258317075,0.153875662416988,15.6348187808964 -00:00:13.5051,69.9820528696567,22.5294054819272,66.2629572997858,0.153531142482741,15.6470858905244 -00:00:13.5074,69.9820293413732,22.4483422294169,66.0245359688733,0.152954585004038,15.659316153898 -00:00:13.5096,69.9820059156749,22.3321638864818,65.6828349602407,0.152164557383341,15.6714921557289 -00:00:13.5131,69.9819697320377,22.0932184890085,64.9800543794367,0.150580127586574,15.6903024494569 -00:00:13.5197,69.9819036258769,21.5113636182315,63.2687165242103,0.146785046046012,15.7246942970828 -00:00:13.5262,69.981839450956,20.8106728504908,61.2078613249728,0.142238758845698,15.7581271748485 -00:00:13.5328,69.981777443703,20.0654770062657,59.016108841958,0.137386992698828,15.7904843212903 -00:00:13.5394,69.9817176499611,19.3388867590473,56.8790787030804,0.13261938199062,15.8217373876207 -00:00:13.5459,69.9816599456791,18.6800395366764,54.9412927549307,0.128250718272325,15.8519392801505 -00:00:13.5525,69.9816040774951,18.1237716072011,53.3052106094149,0.124514039187436,15.8812070550387 -00:00:13.5604,69.9815379780074,17.6155080809537,51.8103178851579,0.121033079433852,15.9158472174649 -00:00:13.5705,69.9814567537704,17.2514224758823,50.7394778702422,0.118425483674052,15.9583956870447 -00:00:13.5805,69.9813765661748,17.1739698400927,50.5116760002726,0.117679670286524,16.0003451241568 -00:00:13.5906,69.9812962192393,17.3331686602204,50.9799078241778,0.118468537006435,16.0422868109757 -00:00:13.6006,69.9812147819165,17.6581696672757,51.9357931390461,0.120317492728839,16.0846781664407 -00:00:13.6107,69.9811316647358,18.0704338904803,53.1483349720008,0.122704622296671,16.1278033483965 -00:00:13.6207,69.9810466288907,18.4960184034364,54.4000541277542,0.125149270859544,16.1717709395993 -00:00:13.6308,69.9809597435457,18.8751593429179,55.5151745379939,0.127274379686954,16.2165387860007 -00:00:13.6408,69.9808713076524,19.1681320256675,56.3768588990219,0.128838604780239,16.2619555407995 -00:00:13.6509,69.9807817542915,19.3570098100886,56.9323817943781,0.12974054100653,16.3078087454617 -00:00:13.6652,69.9806527864328,19.4590719917184,57.2325646815246,0.129977147736307,16.3736385292082 -00:00:13.6796,69.9805236032251,19.4125097822279,57.0956170065527,0.129291894621219,16.4393697672583 -00:00:13.6940,69.9803949232157,19.290992281617,56.7382125929911,0.128147291114648,16.5046634288825 -00:00:13.7083,69.9802670140408,19.1662781766191,56.371406401821,0.126989463417736,16.5693956871375 -00:00:13.7227,69.9801397453734,19.0897484157872,56.1463188699625,0.126136455841777,16.6336313259712 -00:00:13.7371,69.9800127404512,19.0845926727988,56.1311549199964,0.125729919470984,16.6975510362883 -00:00:13.7575,69.9798320296443,19.1843022139381,56.4244182762885,0.125816500131669,16.7881589899636 -00:00:13.7778,69.9796500851852,19.3569473621986,56.9321981241135,0.126348569790318,16.8789646966125 -00:00:13.7982,69.9794665432577,19.5372757600428,57.4625757648317,0.126920712690256,16.9701355845733 -00:00:13.8186,69.979281518132,19.6799246205133,57.8821312368038,0.127257239752637,17.0616146651497 -00:00:13.8390,69.9790953866796,19.772537887944,58.1545231998354,0.127287578651934,17.153224430088 -00:00:13.8693,69.9788177394313,19.8595349371696,58.4103968740282,0.1270287240156,17.2891352977586 -00:00:13.8995,69.9785388232667,19.9412485394003,58.6507309982362,0.126742186835263,17.4247949680921 -00:00:13.9298,69.9782584774886,20.0554431347941,58.9865974552769,0.126653018527038,17.560279554125 -00:00:13.9669,69.9779121942419,20.2322042620702,59.5064831237359,0.126762069283616,17.7264341291291 -00:00:14.0000,69.9776018092919,20.395463956341,59.9866586951205,0.126892934366476,17.8742585562383 -00:00:14.0011,69.9775913151587,20.3967422776385,59.9904184636426,0.12687248642979,17.8792385502019 -00:00:14.0022,69.9775808227683,20.3881347882299,59.9651023183231,0.126793925653822,17.88421666589 -00:00:14.0037,69.9775665075552,20.353668954901,59.8637322202969,0.126553145252131,17.8910071630457 -00:00:14.0052,69.9775522264839,20.2913751185044,59.6805150544248,0.126148716181038,17.8977803015553 -00:00:14.0067,69.9775379985748,20.2018987764026,59.4173493423607,0.12558419704583,17.9045275415364 -00:00:14.0088,69.9775185255051,20.0383336143391,58.9362753362915,0.124568446807726,17.9137619425548 -00:00:14.0135,69.9774758622389,19.5364052262053,57.4600153711919,0.121486465283528,17.9339971854542 -00:00:14.0194,69.9774235925109,18.6902121172788,54.9712121096435,0.116304726641559,17.9588009645742 -00:00:14.0253,69.9773738184372,17.6950106095752,52.0441488516919,0.110176933065025,17.982434421406 -00:00:14.0312,69.9773268247812,16.6389913564181,48.938209871818,0.103610082740321,18.0047544276255 -00:00:14.0371,69.9772826838954,15.596755049219,45.8728089682911,0.0970508251182984,18.0257127827065 -00:00:14.0430,69.9772412838818,14.6273224283758,43.0215365540463,0.0908715337836584,18.0453473138071 -00:00:14.0490,69.9772023706327,13.7741121548327,40.5120945730372,0.0853638999416699,18.06376592175 -00:00:14.0549,69.9771655901313,13.0658746120129,38.4290429765087,0.0807364864744359,18.0811290769928 -00:00:14.0608,69.9771305269865,12.5182179788629,36.8182881731262,0.0771162111189173,18.097632431844 -00:00:14.0682,69.9770884607357,12.0650302820747,35.4853831825726,0.074077109078274,18.1173699184377 -00:00:14.0755,69.9770475325023,11.8541773534119,34.8652275100351,0.0726188397888372,18.1365201873567 -00:00:14.0829,69.9770069697618,11.8585087753495,34.877966986322,0.0725739184964981,18.1554684365243 -00:00:14.0903,69.9769661047094,12.039644558553,35.4107192898617,0.0736869175137016,18.1745484139249 -00:00:14.0977,69.9769244110662,12.3523319958638,36.3303882231288,0.0756504638372837,18.1940214560237 -00:00:14.1051,69.9768815208587,12.7487500575273,37.4963236986098,0.0781409229330726,18.2140672385674 -00:00:14.1124,69.9768372263469,13.1824344326069,38.7718659782556,0.0808491620180415,18.2347835154775 -00:00:14.1198,69.9767914696177,13.6116498037808,40.0342641287671,0.0835043359400533,18.2561928994525 -00:00:14.1272,69.976744322082,14.0020316170542,41.1824459325123,0.0858899589210236,18.278254777415 -00:00:14.1346,69.9766959565878,14.3283273648267,42.1421393083139,0.0878523556423602,18.3008804105321 -00:00:14.1438,69.9766340144965,14.6240177035912,43.0118167752682,0.0895826278079158,18.3298371561083 -00:00:14.1559,69.9765518465903,14.816276702249,43.5772844183794,0.0906150226067906,18.3682003312766 -00:00:14.1680,69.9764691257833,14.8166008114346,43.57823768069,0.0904461842884305,18.4067553519701 -00:00:14.1800,69.9763867446521,14.681076031678,43.1796353872882,0.089432384581463,18.4450766668875 -00:00:14.1921,69.976305267641,14.47862200308,42.584182362,0.0880037930700554,18.4828964576521 -00:00:14.2042,69.9762248963839,14.2735829716718,41.98112638727,0.0865615119355327,18.5201198678924 -00:00:14.2163,69.9761455242215,14.1135769240215,41.5105203647691,0.0854035336717563,18.5567989864828 -00:00:14.2283,69.9760668405736,14.0242628001386,41.2478317651135,0.0846908391066014,18.5930832635886 -00:00:14.2433,69.9759697447114,14.0149271574913,41.2203739926216,0.0844447639652999,18.637762854631 -00:00:14.2582,69.9758724294472,14.093220497541,41.4506485221795,0.0847466150893067,18.6824478127776 -00:00:14.2732,69.9757744401316,14.2189591777801,41.8204681699413,0.0853414095048457,18.7273540074345 -00:00:14.2881,69.9756755890891,14.3506072788248,42.2076684671318,0.0859685015741545,18.7725689134562 -00:00:14.3031,69.975575931749,14.4572566509839,42.521343091129,0.0864366445114816,18.8180643345956 -00:00:14.3180,69.9754756785719,14.5244149492546,42.7188674978075,0.0866582813046036,18.8637393450486 -00:00:14.3407,69.97532323891,14.5617510213266,42.82867947449,0.0865959932903405,18.9330041340776 -00:00:14.3633,69.9751705875992,14.5575082186139,42.8162006429821,0.0862794791038185,19.0021356429094 -00:00:14.3860,69.9750179243704,14.5545090417035,42.8073795344221,0.0859730607436962,19.0710414556649 -00:00:14.4086,69.9748651251438,14.5785389409369,42.8780557086381,0.085833945570954,19.1397809739799 -00:00:14.4370,69.9746731868786,14.646395554091,43.0776339826205,0.0858907979627846,19.2258152579114 -00:00:14.4654,69.9744802802572,14.7316818115003,43.3284759161773,0.0860524718357851,19.3119414414906 -00:00:14.4937,69.9742863436126,14.8090275013213,43.5559632391803,0.0861644408311916,19.3981871379613 -00:00:14.5000,69.9742436886938,14.8237663787694,43.5993128787335,0.0861754212084045,19.417110878805 -00:00:14.5006,69.9742389108888,14.8237256174177,43.599192992405,0.0861664460766649,19.4192295154173 -00:00:14.5013,69.9742341338321,14.8196581495766,43.5872298516959,0.0861331773242673,19.4213475926946 -00:00:14.5025,69.974226531951,14.7997921717958,43.5288005052818,0.0859994209602713,19.4247176002796 -00:00:14.5036,69.9742189452618,14.7612626940857,43.4154785120168,0.0857530245839479,19.4280800708092 -00:00:14.5047,69.9742113833917,14.7030630062577,43.2443029595816,0.0853877885840905,19.4314305691866 -00:00:14.5058,69.974203856254,14.6256574029203,43.0166394203539,0.0849063033647439,19.4347645222595 -00:00:14.5075,69.9741923114648,14.4709670233025,42.5616677155956,0.0839492364672701,19.4398752037109 -00:00:14.5111,69.9741684091918,14.0227526392762,41.2433901155184,0.081183808511249,19.4504415766694 -00:00:14.5159,69.9741382566432,13.2263979226134,38.9011703606276,0.0762552666248456,19.4637293859173 -00:00:14.5207,69.9741100434909,12.2599010094584,36.0585323807601,0.0702212112720807,19.4760964246366 -00:00:14.5247,69.9740883690184,11.3775904841434,33.4635014239513,0.0646522295149898,19.4855293908296 -00:00:14.5266,69.9740780999972,10.921527307303,32.1221391391265,0.0617482890876676,19.4899680575293 -00:00:14.5266,69.9740780999972,10.921415754972,32.1218110440354,0.0617482890875004,19.4899680575296 -00:00:14.5277,69.9740727326467,10.667330512417,31.3745015071087,0.0601234297366159,19.4922757249075 -00:00:14.5288,69.9740674931748,10.4131784619017,30.6269954761815,0.0584925762558466,19.4945207965986 -00:00:14.5299,69.9740623813362,10.1595138021877,29.8809229476108,0.0568592104395065,19.4967031761741 -00:00:14.5310,69.9740573966197,9.90686528044251,29.137839060125,0.0552267009142494,19.4988228965002 -00:00:14.5321,69.9740525005265,9.65541665343444,28.3982842748072,0.0535961772801259,19.5008988010854 -00:00:14.5342,69.9740433840621,9.17581984803092,26.9877054353851,0.0504700835034463,19.5047404546367 -00:00:14.5372,69.9740312074665,8.51205857540129,25.0354663982391,0.0461077848987536,19.50981151793 -00:00:14.5409,69.9740172196388,7.72077768970706,22.708169675609,0.0408511947434178,19.5155275208529 -00:00:14.5456,69.9740014657583,6.80571166224068,20.0167990065902,0.0346926878008677,19.521777903389 -00:00:14.5502,69.9739875767295,5.99625094370881,17.6360321873789,0.0291704626564287,19.5270651493262 -00:00:14.5549,69.9739752737822,5.30388737437812,15.5996687481709,0.0243890734932098,19.5315164665825 -00:00:14.5596,69.9739643365893,4.7390158659045,13.9382819585426,0.0204468481520861,19.5352453486056 -00:00:14.5635,69.9739560826638,4.36759022169638,12.8458535932247,0.0178336858821753,19.5378947140745 -00:00:14.5674,69.9739484203864,4.08545114518494,12.0160327799557,0.015837056980896,19.5402258270685 -00:00:14.5713,69.9739411907044,3.88952779988826,11.4397876467302,0.0144441486495113,19.5423230157393 -00:00:14.5753,69.9739342423209,3.77519228113197,11.1035067092117,0.0136281196076317,19.5442674667775 -00:00:14.5792,69.973927433264,3.73657559608492,10.9899282237792,0.0133504848739527,19.5461359418736 -00:00:14.5831,69.9739206329069,3.7668098403604,11.0788524716482,0.0135632474357538,19.5479993282399 -00:00:14.5870,69.9739137236685,3.85824679836545,11.3477847010749,0.0142110297046832,19.5499214308115 -00:00:14.5909,69.9739066022855,4.00266438265865,11.7725423019372,0.01523319538671,19.5519580776569 -00:00:14.5948,69.9738991806863,4.19146400940185,12.3278353217701,0.0165659012823628,19.5541565278003 -00:00:14.5987,69.9738913865041,4.41586059911415,12.9878252915122,0.0181440253535418,19.556555158651 -00:00:14.6026,69.9738831632487,4.6670660833595,13.7266649510573,0.0199029312785505,19.5591834091733 -00:00:14.6074,69.9738724519462,4.99760563370418,14.6988400991299,0.0222046984836322,19.562743990435 -00:00:14.6122,69.9738609973046,5.34051478776012,15.7073964345886,0.024577396353417,19.5666981148968 -00:00:14.6170,69.9738487873051,5.68204994073271,16.7119115903903,0.0269250878170026,19.5710496262562 -00:00:14.6218,69.973835838127,6.00988836724623,17.6761422566066,0.0291638553626402,19.5757875129965 -00:00:14.6276,69.9738191705139,6.37422529360777,18.7477214517876,0.0316342730242368,19.5820277360197 -00:00:14.6334,69.9738015920378,6.68872557979673,19.6727222935198,0.0337507632400204,19.5887375577434 -00:00:14.6392,69.9737832488879,6.94343433308996,20.4218656855587,0.0354521554321353,19.595838758708 -00:00:14.6470,69.9737577401636,7.18282983537792,21.1259701040527,0.0370360979217639,19.6058189889344 -00:00:14.6548,69.9737315767974,7.30576566667334,21.487546078451,0.0378341925951654,19.6161277779561 -00:00:14.6627,69.9737051551498,7.32240542106598,21.536486532547,0.0379203880319705,19.6265617117401 -00:00:14.6705,69.9736788244712,7.25114565217017,21.3268989769711,0.0374195252309003,19.6369424462751 -00:00:14.6783,69.9736528596076,7.11544074221427,20.9277668888655,0.0364876978755336,19.647129806572 -00:00:14.6861,69.9736274482186,6.94049373546186,20.4132168690055,0.0352919835795924,19.6570278541532 -00:00:14.6939,69.9736026895088,6.75040533094532,19.8541333263098,0.0339927475298639,19.6665854996838 -00:00:14.7017,69.9735786018908,6.56604173283899,19.3118874495264,0.0327299374359066,19.6757928225095 -00:00:14.7095,69.9735551368851,6.40368817414288,18.8343769827732,0.0316138939755687,19.6846742678413 -00:00:14.7173,69.973532196571,6.27443783322865,18.4542289212607,0.0307206535387417,19.6932799344628 -00:00:14.7272,69.9735036576475,6.1669012246694,18.1379447784394,0.0299693490316607,19.7039035008371 -00:00:14.7391,69.9734697860144,6.11893965313982,17.9968813327642,0.029618011543727,19.7164419244021 -00:00:14.7510,69.973435980736,6.14589736764439,18.0761687283659,0.0297751600892425,19.7289351550134 -00:00:14.7629,69.9734019011099,6.22414750797128,18.3063161999155,0.0302791001944926,19.7415592382917 -00:00:14.7748,69.9733673401919,6.32629333293806,18.6067450968766,0.0309427532529487,19.7544205291851 -00:00:14.7867,69.9733322327468,6.42717796157605,18.9034645928707,0.0315954909999221,19.7675518495949 -00:00:14.7986,69.9732966324713,6.50820146228963,19.1417690067342,0.0321123353655664,19.7809247254596 -00:00:14.8105,69.9732606714627,6.5593438121689,19.2921876828497,0.0324268742657847,19.7944706500529 -00:00:14.8263,69.973212745935,6.58049021165391,19.3543829754527,0.0325297443507756,19.8125385140052 -00:00:14.8420,69.9731648045717,6.56105665526823,19.2972254566713,0.0323603652006696,19.8305928429985 -00:00:14.8578,69.9731170623283,6.52129391497276,19.1802762205081,0.0320551374711822,19.8485237247729 -00:00:14.8736,69.9730695959648,6.48140094313612,19.0629439504004,0.0317496473564857,19.8662921637784 -00:00:14.8893,69.9730223611908,6.45547441748567,18.9866894631931,0.0315383580692605,19.8839211285553 -00:00:14.9051,69.9729752429092,6.4490167167337,18.9676962256874,0.0314579295293516,19.9014697271059 -00:00:14.9296,69.9729018970769,6.46817033039023,19.0240303835007,0.0315284687382498,19.9287572205561 -00:00:14.9542,69.9728282692647,6.50281994092812,19.1259410027298,0.0317021424599039,19.9561384280693 -00:00:14.9787,69.9727543058694,6.53191752088303,19.2115221202442,0.0318380270336883,19.9836402728552 -00:00:15.0000,69.9726899025031,6.54470923397587,19.2491448058114,0.0318724992533968,20.0075739564015 -00:00:15.0006,69.9726880668487,6.54429648498139,19.2479308381806,0.0318683027301623,20.0082558819468 -00:00:15.0012,69.9726862316384,6.54238117637137,19.2422975775629,0.031854097502539,20.0089375504241 -00:00:15.0021,69.9726833996046,6.53457811924376,19.2193474095405,0.0317998846043873,20.0099891024314 -00:00:15.0030,69.9726805725191,6.51991595323892,19.1762233918792,0.0316999719268913,20.0110380658789 -00:00:15.0040,69.9726777533996,6.49782840494409,19.1112600145414,0.0315505617217059,20.0120829066798 -00:00:15.0049,69.9726749454396,6.4683118353787,19.0244465746432,0.0313515867805838,20.0131220001812 -00:00:15.0062,69.9726709528051,6.4137400578125,18.8639413465074,0.0309844433442981,20.0145956899797 -00:00:15.0085,69.972664188944,6.28891769328483,18.4968167449554,0.0301454607774917,20.0170781759625 -00:00:15.0124,69.9726531492878,6.0016715341647,17.6519751004844,0.028212405184756,20.021074429903 -00:00:15.0163,69.9726426967233,5.63428486286562,16.5714260672518,0.0257304814181937,20.0247685307311 -00:00:15.0202,69.9726329541366,5.20702056983284,15.3147663818613,0.0228278520209494,20.0280955244379 -00:00:15.0241,69.9726240129728,4.73901975490939,13.9382933967923,0.0196268633189438,20.0310056212333 -00:00:15.0280,69.9726159317276,4.24779998319472,12.4935293623374,0.016241495046307,20.0334652404287 -00:00:15.0311,69.9726099950528,3.84006897661917,11.2943205194681,0.0134108507362853,20.0351255271738 -00:00:15.0343,69.9726046541789,3.43517447817385,10.1034543475701,0.0105807471143807,20.0364692207935 -00:00:15.0375,69.9725999000436,3.0399066291767,8.9409018505197,0.00779900547906029,20.0374990156168 -00:00:15.0407,69.9725957141858,2.66012532512861,7.82389801508414,0.00510817118913222,20.0382227364785 -00:00:15.0438,69.9725920702479,2.30081937840263,6.76711581883126,0.00254568596613994,20.0386526495035 -00:00:15.0470,69.9725889352244,1.96612084245148,5.78270836015141,0.000143718493430895,20.0388048896661 -00:00:15.0497,69.9725866464321,1.70362746415782,5.01066901222889,-0.00175039055714992,20.0387296141152 -00:00:15.0524,69.9725846710697,1.4628898422502,4.30261718308881,-0.0034956431372771,20.0384814404784 -00:00:15.0551,69.9725829812642,1.24508441744296,3.66201299247928,-0.00508145948555122,20.0380750359479 -00:00:15.0578,69.9725815480136,1.0510081096563,3.09120032251852,-0.00650004307308915,20.0375258901013 -00:00:15.0599,69.9725805580023,0.911746659069143,2.6816078207916,-0.00752121871404365,20.0369876839483 -00:00:15.0621,69.972579700242,0.788422829975136,2.31889067639746,-0.00842782291226193,20.0363754158989 -00:00:15.0643,69.972578958657,0.681001196077752,2.00294469434633,-0.00921929473780503,20.0356979328157 -00:00:15.0660,69.972578439461,0.606458547015465,1.78370160886901,-0.00976949143227664,20.0351147406766 -00:00:15.0678,69.9725779762896,0.541868595283134,1.59373116259745,-0.0102468735639633,20.0344999850851 -00:00:15.0695,69.972577561178,0.487062001992713,1.43253529997857,-0.0106524150590537,20.0338581193473 -00:00:15.0713,69.9725771863581,0.441831949967313,1.29950573519798,-0.0109874125643934,20.0331935018689 -00:00:15.0730,69.9725768442295,0.405937125977757,1.19393272346399,-0.0112534628411522,20.0325104089471 -00:00:15.0747,69.9725765273885,0.379104374330294,1.11501286567734,-0.0114524416590515,20.0318130161459 -00:00:15.0765,69.9725762286584,0.361031364622433,1.06185695477186,-0.0115864817865536,20.0311053782279 -00:00:15.0782,69.9725759411162,0.351389277007506,1.03349787355149,-0.011657950175178,20.0303914123468 -00:00:15.0800,69.9725756581127,0.349825463276146,1.02889842140043,-0.0116694247738634,20.0296748838708 -00:00:15.0822,69.9725752969678,0.358740928664806,1.0551203784259,-0.0116030240331962,20.0287733361234 -00:00:15.0843,69.9725749209826,0.379115956942433,1.11504693218363,-0.0114515387876186,20.0278802092472 -00:00:15.0870,69.9725744284548,0.417891313746651,1.22909209925486,-0.0111635230076501,20.0268186871827 -00:00:15.0897,69.9725738796694,0.470736781137165,1.38451994452107,-0.010771403833576,20.025789020163 -00:00:15.0923,69.9725732583427,0.536075808585377,1.57669355466287,-0.0102871653169363,20.0248003832871 -00:00:15.0950,69.9725725500423,0.61229367796428,1.80086375871847,-0.00972308983368784,20.0238608766457 -00:00:15.0976,69.9725717423425,0.697763801453559,2.05224647486341,-0.0090915341945991,20.0229774370771 -00:00:15.1003,69.9725708248335,0.790865631715615,2.32607538739887,-0.00840477290764583,20.0221558352992 -00:00:15.1030,69.9725697890942,0.890000605990007,2.61764884114708,-0.00767486138787662,20.021400695651 -00:00:15.1063,69.9725683319573,1.01867621001403,2.99610650004126,-0.00672951954351409,20.0205627172461 -00:00:15.1096,69.972566675737,1.15138064703188,3.38641366774083,-0.00575702072549682,20.0198361649829 -00:00:15.1129,69.9725648163739,1.28543927658825,3.78070375467131,-0.00477710562637809,20.0192230278035 -00:00:15.1162,69.9725627536544,1.41834819646756,4.17161234255166,-0.00380807414144129,20.0187231379505 -00:00:15.1203,69.9725598789036,1.58005299276619,4.64721468460645,-0.00263241285817312,20.0182512389002 -00:00:15.1244,69.9725567035332,1.73245897422031,5.09546757123622,-0.00152768884802073,20.0179458282103 -00:00:15.1286,69.9725532483878,1.87228322110258,5.50671535618405,-0.000517010064390658,20.0177949199733 -00:00:15.1339,69.9725484884626,2.02788880693788,5.96437884393494,0.000604520119339654,20.0177999274113 -00:00:15.1402,69.9725423262058,2.17723077243063,6.40361991891363,0.00167765451619462,20.0180492982376 -00:00:15.1465,69.9725357899593,2.28309011421468,6.71497092416084,0.00243628449390527,20.0185034984435 -00:00:15.1529,69.9725290060392,2.3454920909856,6.89850614995765,0.00288248841536685,20.0190930275039 -00:00:15.1592,69.9725220973975,2.36722334471627,6.96242160210668,0.00303734686705583,20.019750548859 -00:00:15.1656,69.9725151757141,2.35328686569667,6.92143195793137,0.00293707615917687,20.0204150584983 -00:00:15.1719,69.9725083358493,2.31022174654715,6.79476984278574,0.00262836217996569,20.0210347762185 -00:00:15.1783,69.9725016523639,2.24541684944958,6.60416720426347,0.00216371877568489,20.02156895759 -00:00:15.1846,69.9724951779459,2.16648137629518,6.37200404792701,0.00159723314800485,20.021988722251 -00:00:15.1909,69.9724889435287,2.08070844730979,6.11973072738174,0.000980899786312086,20.0222770056266 -00:00:15.1973,69.9724829598089,1.99465247209612,5.86662491792978,0.000361670251194582,20.0224277742607 -00:00:15.2036,69.9724772198239,1.91382863108049,5.62890773847204,-0.000220713106485258,20.0224446694923 -00:00:15.2100,69.9724717022387,1.84253220485403,5.41921236721774,-0.000735087835411223,20.0223392547431 -00:00:15.2163,69.972466375005,1.78376739063281,5.24637467833179,-0.00115948552205131,20.0221290392433 -00:00:15.2244,69.9724597901086,1.7296551756397,5.08722110482264,-0.0015505744757618,20.0217464334373 -00:00:15.2325,69.9724533633055,1.6992008772634,4.99764963900999,-0.00177068902924387,20.0212766788192 -00:00:15.2406,69.9724470101669,1.69085651933889,4.97310740982027,-0.0018307678183943,20.0207663489911 -00:00:15.2487,69.9724406546936,1.70125463749556,5.00369011028106,-0.0017551335721787,20.020257406823 -00:00:15.2567,69.9724342354669,1.72583671527666,5.07599033904899,-0.00157686875963424,20.019783762756 -00:00:15.2648,69.9724277089314,1.75952080139941,5.17506118058649,-0.00133288102809172,20.0193694377419 -00:00:15.2729,69.9724210502522,1.79729998007136,5.28617641197458,-0.00105948989393277,20.0190280896626 -00:00:15.2810,69.972414252174,1.8347200617109,5.39623547562029,-0.000788932331930798,20.0187636598144 -00:00:15.2891,69.9724073223744,1.8682130174401,5.49474416894148,-0.000546956628613374,20.0185718553834 -00:00:15.2990,69.972398664574,1.90027674410546,5.58904924736901,-0.000315466578810036,20.0184181536928 -00:00:15.3112,69.9723879300535,1.92357384951751,5.65757014563974,-0.00014735911317934,20.0183138470905 -00:00:15.3233,69.9723771117372,1.92995462458807,5.67633713114137,-0.000101306912556069,20.0182556755766 -00:00:15.3354,69.9723662932979,1.92273858322843,5.6551134800836,-0.000153295286762603,20.0181975936395 -00:00:15.3476,69.9723555359478,1.90708695046745,5.60907926608074,-0.000266108874473759,20.0181059278479 -00:00:15.3597,69.9723448717109,1.88853314838752,5.5545092599633,-0.000399859470781773,20.0179630611351 -00:00:15.3718,69.9723343044627,1.87176347343466,5.50518668657252,-0.000520741111032049,20.0177668621472 -00:00:15.3840,69.9723238164557,1.85988241462506,5.47024239595607,-0.000606334997973945,20.0175271027611 -00:00:15.3996,69.9723104119456,1.85358914435824,5.45173277752424,-0.000651525656866186,20.0171847814648 -00:00:15.4193,69.9722934807814,1.85744622022276,5.46307711830222,-0.000623358417545561,20.0167476322641 -00:00:15.4390,69.9722764865648,1.86867942653276,5.49611596039046,-0.000541965599326115,20.0163454187282 -00:00:15.4587,69.9722593942787,1.88044930533415,5.5307332509828,-0.000456753058099768,20.0159973980997 -00:00:15.4784,69.9722422176379,1.8880573614252,5.55310988654472,-0.000401623823543423,20.0156959888934 -00:00:15.5000,69.9722233407676,1.89020295879702,5.55942046705005,-0.000385916138333886,20.0153918799043 -00:00:15.5279,69.9721989400726,1.88731605578731,5.55092957584502,-0.000406459005341881,20.0149968285943 -00:00:15.5558,69.9721745739898,1.88358898584867,5.53996760543726,-0.000433053873439621,20.0145830166995 -00:00:15.5837,69.9721502306828,1.88296000654877,5.53811766631992,-0.000437280643011865,20.0141569690069 -00:00:15.6116,69.9721258742333,1.88567724895335,5.54610955574516,-0.000417360841365046,20.0137384618259 -00:00:15.6496,69.9720926545655,1.89064048141255,5.56070729827222,-0.000381146301114224,20.013204343944 -00:00:15.6876,69.9720593687929,1.8939592629511,5.57046842044441,-0.000356828038636056,20.0127071296646 -00:00:15.7338,69.9720188708892,1.89537679228469,5.57463762436672,-0.000346171929011005,20.0121302411529 -00:00:15.7961,69.9719641745224,1.89697435250766,5.57933633090488,-0.000334088535066619,20.0113805957653 -00:00:15.8584,69.9719094072647,1.89982839941742,5.58773058652182,-0.00031296663021448,20.0106711631558 -00:00:15.9483,69.9718302628958,1.90417053378631,5.60050156995975,-0.000280933846440092,20.0097300441995 -00:00:16.0000,69.9717846867895,1.90618716987019,5.60643285255937,-0.000266009979239666,20.0092301294557 -00:00:16.1000,69.9716963662036,1.9094412627521,5.61600371397677,-0.000241859419846527,20.0083310318361 -00:00:16.2000,69.9716078939203,1.91257992831045,5.62523508326603,-0.000218605083600097,20.0075176868764 -00:00:16.3000,69.9715192801479,1.91554881408018,5.63396710023582,-0.000196635051361819,20.0067842623501 -00:00:16.4000,69.9714305386848,1.91814498982991,5.64160291126445,-0.000177407961246021,20.0061229642094 -00:00:16.5000,69.9713416834524,1.92045161032508,5.64838708919141,-0.000160317989039672,20.0055259501856 -00:00:16.6000,69.9712527254745,1.92256228798471,5.65459496466091,-0.000144685069414551,20.004986991113 -00:00:16.7000,69.9711636743319,1.92447636833297,5.66022461274404,-0.000130509933057272,20.0045006676514 -00:00:16.8000,69.9710745391701,1.92619397864171,5.66527640776974,-0.000117787838967434,20.0040618141086 -00:00:16.9000,69.9709853283175,1.92774189432233,5.66982910094804,-0.000106322102963091,20.0036657274001 -00:00:17.0000,69.9708960491273,1.92914208388558,5.67394730554582,-9.59511298282999e-05,20.003308252794 -00:00:17.1000,69.9708067082237,1.93040617370116,5.67766521676812,-8.65882483378251e-05,20.0029856471271 -00:00:17.2000,69.970717311637,1.93154594292582,5.6810174791936,-7.81459315006587e-05,20.0026945036513 -00:00:17.3000,69.9706278648091,1.93257449639333,5.68404263645098,-7.0527332600153e-05,20.0024317478834 -00:00:17.4000,69.970538372635,1.93350307680406,5.68677375530606,-6.36492690655923e-05,20.0021946140918 -00:00:17.5000,69.9704488395336,1.9343410979796,5.68923852346941,-5.74419531742169e-05,20.0019806055717 -00:00:17.6000,69.9703592694978,1.93509729207643,5.69146262375421,-5.18406941118244e-05,20.0017874663336 -00:00:17.7000,69.9702696661302,1.93577975165655,5.69346985781339,-4.67855796715875e-05,20.0016131607947 -00:00:17.8000,69.9701800326809,1.93639569041682,5.69528144240241,-4.22231871002993e-05,20.0014558527045 -00:00:17.9000,69.970090372083,1.93695155864656,5.69691634896047,-3.81057349717192e-05,20.0013138846851 -00:00:18.0000,69.9700006869842,1.93745321000288,5.69839179412611,-3.43898669949046e-05,20.0011857607319 -00:00:18.1000,69.969910979774,1.93790594363479,5.69972336363173,-3.10363366922883e-05,20.0010701308012 -00:00:18.2000,69.9698212526085,1.93831453053073,5.70092508979628,-2.80098067436515e-05,20.0009657765711 -00:00:18.3000,69.9697315074336,1.93868327209412,5.70200962380624,-2.52784167531191e-05,20.0008715984951 -00:00:18.4000,69.9696417460057,1.93901605411508,5.7029883944561,-2.28133852413848e-05,20.0007866042294 -00:00:18.5000,69.9695519699097,1.93931638449516,5.7038717191034,-2.05887297028968e-05,20.0007098982094 -00:00:18.6000,69.9694621805759,1.93958742774753,5.7046689051398,-1.85810106487043e-05,20.0006406722077 -00:00:18.7000,69.9693723792953,1.93983203954013,5.70538835158861,-1.67690760166979e-05,20.0005781968075 -00:00:18.8000,69.9692825672329,1.94005279747586,5.70603763963488,-1.51338333545948e-05,20.00052181372 -00:00:18.9000,69.9691927454401,1.940252027834,5.70662361127646,-1.36580516984698e-05,20.0004709288511 -00:00:19.0000,69.9691029148658,1.94043182990052,5.70715244088387,-1.23261813455749e-05,20.0004250060402 -00:00:19.1000,69.9690130763663,1.9405940982364,5.7076297006953,-1.11241889589381e-05,20.0003835614102 -00:00:19.2000,69.9689232307144,1.94074054268968,5.70806041967552,-1.00394093615718e-05,20.0003461582694 -00:00:19.3000,69.9688333786077,1.94087270636555,5.70844913636925,-9.06041243344607e-06,20.0003124025105 -00:00:19.4000,69.9687435206756,1.9409919818748,5.70879994669059,-8.17688276493083e-06,20.0002819384576 -00:00:19.5000,69.9686536574862,1.9410996260251,5.70911654713265,-7.3795108475532e-06,20.0002544451187 -00:00:19.6000,69.9685637895521,1.94119677306665,5.70940227372543,-6.65989496783837e-06,20.0002296328035 -00:00:19.7000,69.968473917336,1.94128444664068,5.70966013717846,-6.01045270694478e-06,20.000207240071 -00:00:19.8000,69.9683840412556,1.94136357056382,5.70989285459946,-5.42434106244933e-06,20.0001870309745 -00:00:19.9000,69.9682941616876,1.94143497856547,5.71010287813372,-4.89538432520556e-06,20.0001687925759 -00:00:20.0000,69.9682042789721,1.94149942307293,5.71029242080273,-4.41800900820202e-06,20.0001523327019 -00:00:20.1000,69.968114393416,1.9415575831382,5.71046347981825,-3.98718513262943e-06,20.0001374779189 -00:00:20.2000,69.9680245052965,1.94161007159466,5.71061785763136,-3.59837321835295e-06,20.0001240717059 -00:00:20.3000,69.9679346148634,1.94165744151506,5.71075718092666,-3.24747644892691e-06,20.000111972805 -00:00:20.4000,69.9678447223423,1.94170019203825,5.71088291775956,-2.93079751235755e-06,20.0001010537332 -00:00:20.5000,69.9677548279369,1.94173877455097,5.71099639573815,-2.64499965712719e-06,20.0000911994389 -00:00:20.6000,69.967664931831,1.94177359365153,5.71109880485743,-2.38707150379781e-06,20.00008230609 -00:00:20.7000,69.9675750341903,1.94180501726342,5.71119122724537,-2.15429527482246e-06,20.0000742799794 -00:00:20.8000,69.9674851351645,1.94183337649286,5.71127463674369,-1.94421832321136e-06,20.0000670365382 -00:00:20.9000,69.9673952348887,1.9418589701651,5.71134991225031,-1.75462712187523e-06,20.000060499444 -00:00:21.0000,69.9673053334849,1.94188206796848,5.71141784696611,-1.5835239720393e-06,20.0000545998171 -00:00:21.1000,69.9672154310629,1.94190291328824,5.71147915673011,-1.42910601163311e-06,20.0000492754946 -00:00:21.2000,69.9671255277222,1.9419217257762,5.71153448757706,-1.28974618221913e-06,20.0000444703755 -00:00:21.3000,69.9670356235523,1.94193870366604,5.71158442254718,-1.16397607839358e-06,20.0000401338294 -00:00:21.4000,69.966945718634,1.9419540258594,5.71162948782177,-1.05047049504407e-06,20.0000362201634 -00:00:21.5000,69.9668558130404,1.9419678538123,5.71167015827146,-9.48033454315386e-07,20.00003268814 -00:00:21.6000,69.9667659068372,1.94198033323656,5.71170686246048,-8.55585602317314e-07,20.0000295005432 -00:00:21.7000,69.966676000084,1.9419915956349,5.71173998716147,-7.72152838398315e-07,20.0000266237862 -00:00:21.8000,69.9665860928344,1.9420017596864,5.71176988143059,-6.96856051967746e-07,20.0000240275573 -00:00:21.9000,69.9664961851368,1.94201093249678,5.71179686028465,-6.28901861564802e-07,20.0000216845007 -00:00:22.0000,69.9664062770349,1.94201921072767,5.71182120802256,-5.67574249761781e-07,20.0000195699281 -00:00:22.1000,69.9663163685681,1.94202668161407,5.71184318121786,-5.12227026258864e-07,20.0000176615589 -00:00:22.2000,69.966226459772,1.94203342388502,5.71186301142653,-4.62277008607743e-07,20.0000159392851 -00:00:22.3000,69.9661365506788,1.94203950859204,5.71188090762365,-4.17197884884865e-07,20.0000143849595 -00:00:22.4000,69.9660466413173,1.94204499985781,5.71189705840531,-3.76514668510165e-07,20.0000129822045 -00:00:22.5000,69.9659567317138,1.94204995555191,5.71191163397621,-3.39798692177739e-07,20.0000117162398 -00:00:22.6000,69.9658668218919,1.94205442790051,5.71192478794268,-3.06663092135848e-07,20.0000105737261 -00:00:22.7000,69.9657769118728,1.94205846403809,5.71193665893557,-2.76758721206904e-07,20.0000095426251 -00:00:22.8000,69.9656870016758,1.94206210650202,5.71194737206475,-2.4977048509827e-07,20.0000086120722 -00:00:22.9000,69.9655970913183,1.94206539368131,5.71195704023914,-2.2541401810767e-07,20.0000077722627 -00:00:23.0000,69.965507180816,1.94206836022155,5.71196576535749,-2.03432683995453e-07,20.0000070143474 -00:00:23.1000,69.9654172701828,1.94207103739075,5.71197363938457,-1.83594865897825e-07,20.0000063303406 -00:00:23.2000,69.9653273594317,1.94207345340707,5.71198074531492,-1.65691538571566e-07,20.000005713035 -00:00:23.3000,69.965237448574,1.94207563373641,5.71198715804827,-1.49534063903204e-07,20.0000051559261 -00:00:23.4000,69.9651475376203,1.9420776013622,5.71199294518294,-1.34952192770127e-07,20.000004653144 -00:00:23.5000,69.9650576265798,1.94207937702663,5.71199816772537,-1.21792277918167e-07,20.0000041993908 -00:00:23.6000,69.9649677154611,1.94208097944911,5.71200288073267,-1.09915655775968e-07,20.0000037898856 -00:00:23.7000,69.9648778042717,1.94208242552339,5.71200713389232,-9.91971863464005e-08,20.0000034203134 -00:00:23.8000,69.9647878930186,1.94208373049578,5.7120109720464,-8.95239329273772e-08,20.0000030867802 -00:00:23.9000,69.964697981708,1.94208490812581,5.71201443566414,-8.07939720360683e-08,20.0000027857716 -00:00:24.0000,69.9646080703455,1.94208597083141,5.71201756126886,-7.29153181522803e-08,20.000002514116 -00:00:24.1000,69.9645181589361,1.9420869298201,5.71202038182383,-6.58049520108239e-08,20.000002268951 -00:00:24.2000,69.9644282474845,1.94208779520574,5.71202292707569,-5.93879553690622e-08,20.0000020476934 -00:00:24.3000,69.9643383359947,1.94208857611589,5.71202522387027,-5.35967158485063e-08,20.0000018480117 -00:00:24.4000,69.9642484244706,1.94208928078844,5.7120272964366,-4.83702116406415e-08,20.0000016678022 -00:00:24.5000,69.9641585129153,1.94208991665803,5.71202916664126,-4.36533708475066e-08,20.0000015051658 -00:00:24.6000,69.9640686013321,1.94209049043363,5.71203085421656,-3.93964967074262e-08,20.0000013583889 -00:00:24.7000,69.9639786897235,1.94209100817098,5.71203237697347,-3.55547317014096e-08,20.0000012259251 -00:00:24.8000,69.9638887780921,1.94209147533486,5.71203375098488,-3.20875955241257e-08,20.0000011063785 -00:00:24.9000,69.9637988664401,1.94209189685604,5.71203499075307,-2.89585634010531e-08,20.0000009984896 -00:00:25.0000,69.9637089547696,1.94209227718628,5.7120361093714,-2.61346593069893e-08,20.0000009011215 -00:00:25.0003,69.9637086708122,1.9421835155796,5.71230445758706,6.32106939672652e-07,20.0000009052351 -00:00:25.0006,69.9637083868209,1.94252540791939,5.71331002329233,3.09868172243019e-06,20.000000928057 -00:00:25.0010,69.963707988882,1.9437660080201,5.71695884711795,1.20487979123434e-05,20.0000010553446 -00:00:25.0016,69.9637075041656,1.94687138218361,5.72609230054004,3.44510161143525e-05,20.0000015197366 -00:00:25.0021,69.9637070184093,1.95204658020705,5.7413134711972,7.17818885221329e-05,20.000002556334 -00:00:25.0026,69.9637065310768,1.95950427532166,5.76324786859312,0.000125570707145081,20.0000044601347 -00:00:25.0032,69.9637060415899,1.96934014685301,5.79217690250884,0.000196500279805553,20.0000075491596 -00:00:25.0039,69.9637053585308,1.98693146291399,5.84391606739408,0.00032332323053271,20.0000144710631 -00:00:25.0050,69.963704392151,2.0190733407437,5.93845100218734,0.000554936583118838,20.0000308374513 -00:00:25.0063,69.9637030810285,2.07483651937765,6.10246035111074,0.000956427561918782,20.0000682177747 -00:00:25.0082,69.9637012864533,2.1698837578933,6.38201105262735,0.00163978245003219,20.0001528945762 -00:00:25.0107,69.9636986360437,2.33874296583931,6.87865578188033,0.00285079752657234,20.0003564063591 -00:00:25.0138,69.9636950346505,2.60036701531342,7.6481382803336,0.00471953702069568,20.0007807514701 -00:00:25.0170,69.9636910178462,2.91159133309561,8.56350392086945,0.00693074026254324,20.0014307262269 -00:00:25.0201,69.963686520465,3.26323699727833,9.59775587434804,0.0094138873009892,20.0023402626056 -00:00:25.0233,69.9636814897794,3.64642195160799,10.7247704459058,0.0121016109614313,20.0035360245417 -00:00:25.0264,69.9636758858659,4.0526012030251,11.919415303015,0.0149302906727764,20.0050373387572 -00:00:25.0296,69.9636696811222,4.47357078727714,13.1575611390504,0.0178402407008157,20.0068566149833 -00:00:25.0334,69.9636611906432,5.00001501391605,14.7059265115178,0.0214486534018316,20.0095424400067 -00:00:25.0373,69.9636517613376,5.52349516448538,16.2455740131923,0.0250035256002654,20.0127168719503 -00:00:25.0412,69.9636414096447,6.03159194943533,17.7399763218686,0.0284226574261068,20.0163670344694 -00:00:25.0459,69.9636276258404,6.61247151662042,19.4484456371189,0.0322940775171277,20.0214142969459 -00:00:25.0506,69.9636126387034,7.13767143332263,20.9931512744783,0.0357598282479461,20.0270706168789 -00:00:25.0561,69.9635940011302,7.65813799696871,22.5239352852021,0.0391609386906704,20.0342666010546 -00:00:25.0615,69.9635741857969,8.07375945469846,23.7463513373484,0.0418508604387847,20.0420474897714 -00:00:25.0685,69.9635473891055,8.44520409122447,24.8388355624249,0.0442295192950099,20.0526936377609 -00:00:25.0755,69.9635196802286,8.63480800588221,25.3964941349477,0.0454228914297816,20.0637833195037 -00:00:25.0826,69.963491617326,8.65815273180831,25.4651550935539,0.0455433955010884,20.0750400709649 -00:00:25.0896,69.9634636956935,8.54174214626459,25.1227710184252,0.0447648524158645,20.086220162372 -00:00:25.0966,69.963436314584,8.31899160092624,24.4676223556654,0.043300060389734,20.0971272664003 -00:00:25.1036,69.9634097609605,8.02607297279952,23.6060969788221,0.041377890950918,20.1076195379383 -00:00:25.1107,69.9633842063911,7.69828621578104,22.6420182817089,0.0392229260045899,20.1176110488877 -00:00:25.1177,69.9633597142696,7.36726659242841,21.6684311542012,0.0370389873228679,20.1270687086297 -00:00:25.1247,69.9633362545274,7.05911663506447,20.7621077501896,0.0349971332409489,20.1360057058179 -00:00:25.1317,69.9633137229982,6.79341270037277,19.9806255893317,0.0332282361959188,20.144472557859 -00:00:25.1387,69.9632919628464,6.5829543543489,19.3616304539673,0.0318199033630741,20.1525468539187 -00:00:25.1472,69.9632663995511,6.41085682073421,18.8554612374536,0.030659778220259,20.1619278612811 -00:00:25.1557,69.9632413385553,6.32765335915693,18.610745173991,0.0300887452676107,20.1710491618299 -00:00:25.1642,69.9632164524342,6.32447598141016,18.601399945324,0.0300492631713618,20.1800763798356 -00:00:25.1727,69.9631914585085,6.38597864571309,18.7822901344503,0.0304388040122263,20.1891525901705 -00:00:25.1812,69.9631661407447,6.49304730999209,19.097197970565,0.0311289655395404,20.1983868375602 -00:00:25.1897,69.9631403595702,6.62548858372604,19.486731128606,0.031984465423654,20.2078490746811 -00:00:25.1982,69.9631140516734,6.76434619043588,19.8951358542232,0.03287920744798,20.2175704315006 -00:00:25.2066,69.9630872218388,6.89366826409521,20.2754948943977,0.0337081052656373,20.2275476349783 -00:00:25.2151,69.9630599291294,7.00164024308074,20.5930595384728,0.0343942367791991,20.2377502576117 -00:00:25.2258,69.9630249835707,7.09662353433659,20.8724221598135,0.0349871975123633,20.2508662950555 -00:00:25.2399,69.9629788478269,7.14952709476179,21.0280208669464,0.0352943544416241,20.26822252371 -00:00:25.2539,69.9629325818953,7.13430690060119,20.9832555900035,0.0351561557295475,20.2856246693337 -00:00:25.2679,69.9628865369393,7.07551783813368,20.8103465827461,0.0347339651940448,20.3028977210029 -00:00:25.2819,69.9628409027409,7.00167920981677,20.5931741465199,0.0342141621460189,20.3199473779906 -00:00:25.2959,69.9627957031266,6.93708116761264,20.4031799047431,0.0337554087794759,20.3367621080414 -00:00:25.3099,69.9627508366113,6.89675405970689,20.2845707638438,0.0334558919641687,20.3533928299112 -00:00:25.3239,69.962706137969,6.88524274465292,20.2507139548615,0.0333451068168119,20.3699221639426 -00:00:25.3427,69.9626461646258,6.90515663440528,20.309284218839,0.0334275016324901,20.3920779789107 -00:00:25.3614,69.9625859431954,6.94642573515989,20.4306639269408,0.0336486814583095,20.4143255013332 -00:00:25.3802,69.9625253836373,6.98757248997818,20.5516837940535,0.0338682216258398,20.4367091320658 -00:00:25.3990,69.9624645397304,7.01443165069134,20.6306813255628,0.033994155723819,20.4592017527293 -00:00:25.4178,69.9624035413138,7.02327931027416,20.6567038537475,0.0340028087869125,20.4817387003987 -00:00:25.4452,69.9623143517638,7.01689695112353,20.6379322091869,0.0338903090938836,20.5146348647119 -00:00:25.4727,69.9622252449306,7.00615443159707,20.6063365635208,0.033750090537061,20.5474214940466 -00:00:25.5000,69.9621367517494,7.00562555460814,20.6047810429651,0.0336769268031504,20.5799081993182 -00:00:25.5004,69.9621352007992,7.00630116642906,20.6067681365561,0.0336800773670562,20.5804769288932 -00:00:25.5009,69.9621336494878,7.00849467577151,20.6132196346221,0.0336930447524107,20.5810458164647 -00:00:25.5017,69.9621311975169,7.01729582900649,20.6391053794309,0.0337480331025917,20.5819452095527 -00:00:25.5024,69.9621287410105,7.03400293765598,20.6882439342823,0.0338541182452895,20.5828467882358 -00:00:25.5032,69.962126277086,7.05962446785759,20.7636013760517,0.0340177700227151,20.5837519728908 -00:00:25.5039,69.9621238025955,7.0944750749687,20.8661031616727,0.0342409446890626,20.584662313097 -00:00:25.5049,69.9621205184585,7.15434145980663,21.0421807641371,0.0346247723151873,20.5858731876355 -00:00:25.5064,69.9621154833333,7.27377221594779,21.3934476939641,0.0353905689165665,20.5877373303904 -00:00:25.5088,69.9621075074265,7.52133775407287,22.1215816296261,0.0369752801871468,20.5907140863921 -00:00:25.5122,69.9620952316789,8.00714873304828,23.550437450142,0.0400699764154421,20.595362332097 -00:00:25.5156,69.9620820903615,8.6210536594162,25.3560401747535,0.0439498122187504,20.6004290933939 -00:00:25.5190,69.962067901471,9.34080595710308,27.472958697362,0.0484543585159038,20.605997997217 -00:00:25.5224,69.9620525140354,10.1447238384607,29.8374230542961,0.0534300402394279,20.6121355644935 -00:00:25.5258,69.9620358109629,11.011794255517,32.3876301632853,0.0587323233845954,20.6188902867131 -00:00:25.5292,69.962017708331,11.9216034500035,35.0635395588337,0.0642261085028871,20.6262935916498 -00:00:25.5334,69.9619935988557,13.0612739143708,38.4155115128554,0.0710097156069525,20.6362478181462 -00:00:25.5375,69.9619672951916,14.2013491741607,41.7686740416491,0.0776895315532095,20.6471904940297 -00:00:25.5417,69.9619388271993,15.3102078051177,45.0300229562286,0.0840868918740851,20.6590933569175 -00:00:25.5459,69.9619082818743,16.3591993826295,48.1152923018513,0.0900496273184321,20.6719041250532 -00:00:25.5511,69.9618672069157,17.5526938511316,51.6255701503871,0.0967275223802452,20.6891591802124 -00:00:25.5564,69.9618234533893,18.5757935285651,54.6346868487208,0.102358016569949,20.7075494740475 -00:00:25.5627,69.9617676342245,19.5484459403023,57.4954292361831,0.107618224431244,20.7309995075065 -00:00:25.5704,69.9616963282235,20.3209791318959,59.7675856820468,0.111698251181951,20.7609195549689 -00:00:25.5782,69.9616230486597,20.6469558934806,60.7263408631783,0.113322403291041,20.7916233792369 -00:00:25.5846,69.9615618656223,20.6098450317464,60.6171912698424,0.113001512007984,20.8172272045395 -00:00:25.5910,69.961501116482,20.3445851923061,59.8370152714886,0.111446643073032,20.8426246183176 -00:00:25.5974,69.9614413990244,19.906757461016,58.5492866500471,0.108953590647143,20.8675683241179 -00:00:25.6038,69.9613831372897,19.3547810719252,56.9258266821328,0.105831441686007,20.8918815574863 -00:00:25.6102,69.9613265865207,18.7449830189877,55.1323029970225,0.102380547938592,20.9154559936837 -00:00:25.6167,69.9612718449815,18.1278610033916,53.3172382452695,0.0988746166227322,20.9382476678933 -00:00:25.6231,69.961218874169,17.545606015965,51.6047235763677,0.0955473717431211,20.9602697113525 -00:00:25.6295,69.9611675248742,17.0307887193229,50.0905550568319,0.0925838893801542,20.9815825167751 -00:00:25.6373,69.9611067055095,16.5273025715957,48.6097134458698,0.0896555983254624,21.0067777373621 -00:00:25.6451,69.9610474264044,16.1771392374284,47.5798212865542,0.0875846020536574,21.031285054213 -00:00:25.6553,69.9609719486653,15.9536777633999,46.9225816570585,0.0862002520351043,21.0624281938224 -00:00:25.6654,69.9608969869351,15.9623625633483,46.9481251863186,0.0861297174288025,21.0933059129996 -00:00:25.6755,69.9608215898044,16.1519457593985,47.5057228217604,0.0870787695071479,21.1243278369466 -00:00:25.6857,69.960745063817,16.4573188829975,48.4038790676398,0.0886717752656629,21.1557904523155 -00:00:25.6958,69.9606670213128,16.81103441547,49.4442188690295,0.0905232937335065,21.1878565472413 -00:00:25.7059,69.9605873699752,17.1533217219238,50.4509462409523,0.0922974281221738,21.2205612513725 -00:00:25.7161,69.960506261278,17.4391689326643,51.2916733313657,0.0937465703934393,21.2538360690658 -00:00:25.7262,69.9604240142187,17.6418729827832,51.8878617140683,0.0947280394307261,21.287542821678 -00:00:25.7330,69.9603680905807,17.7279972115744,52.1411682693364,0.0951090770578292,21.3104373856596 -00:00:25.7330,69.9603680905807,17.7281012868169,52.1414743729908,0.0951090770578362,21.3104373856603 -00:00:25.7382,69.9603260763364,17.7446461109691,52.1901356204974,0.0951295725034746,21.3276192394323 -00:00:25.7433,69.9602840896983,17.732986656473,52.1558431072736,0.0949950983898407,21.3447768051254 -00:00:25.7484,69.9602421844133,17.6986273535523,52.0547863339774,0.0947361774391394,21.3618876057402 -00:00:25.7550,69.9601878161666,17.6337360076517,51.8639294342698,0.0942889384170969,21.3840719830371 -00:00:25.7660,69.9600988781338,17.4896776552724,51.4402283978601,0.093349778321286,21.4203139790928 -00:00:25.7814,69.959974987355,17.2703667714609,50.7951963866498,0.0919406191634797,21.4706909274435 -00:00:25.7968,69.9598524394362,17.0969851773933,50.2852505217451,0.0907884476245053,21.5203960097474 -00:00:25.8122,69.9597307635406,17.0164852511792,50.04848603288,0.0901512900063259,21.569628312057 -00:00:25.8276,69.9596093087938,17.0353218786122,50.1038878782713,0.0900626562618239,21.6186624887117 -00:00:25.8430,69.9594874795075,17.1283423290407,50.3774774383549,0.0903809871992208,21.6677487557723 -00:00:25.8584,69.9593648962681,17.2556471273526,50.7519033157429,0.0908845913613211,21.7170452127287 -00:00:25.8738,69.9592414456902,17.3790355329358,51.1148103909877,0.0913634871719477,21.7665978250861 -00:00:25.8892,69.9591172346065,17.4730660509283,51.3913707380244,0.0916796966384703,21.8163606791267 -00:00:25.9097,69.958950537521,17.5415185401524,51.5927015886834,0.0917894197156801,21.8829892154325 -00:00:25.9369,69.9587301705629,17.5675399671133,51.669235197392,0.0915860551531283,21.9707877427731 -00:00:25.9640,69.958509520527,17.5747031794323,51.6903034689186,0.09128293112814,22.058374839795 -00:00:25.9911,69.9582885596337,17.6074996318767,51.7867636231669,0.0911201683763276,22.1457634384887 -00:00:26.0000,69.9582165732714,17.6266959760559,51.843223458988,0.0911133495290838,22.1741648643602 -00:00:26.0008,69.9582095731637,17.6314710862806,51.8572679008253,0.0911283221019031,22.1769249187085 -00:00:26.0017,69.9582025696314,17.6426397022695,51.8901167713809,0.0911776366211452,22.1796860537287 -00:00:26.0030,69.9581913916819,17.6806932564749,52.002038989632,0.0913649431858767,22.1840925349914 -00:00:26.0044,69.9581801807054,17.7459856587792,52.1940754669977,0.0916982361832336,22.188511714797 -00:00:26.0058,69.9581689197185,17.8390038421882,52.4676583593772,0.0921797441986002,22.1929505262239 -00:00:26.0071,69.9581575916837,17.9584315688837,52.8189163790696,0.0928019078637895,22.1974159037906 -00:00:26.0098,69.9581356156635,18.2532834171294,53.6861276974393,0.09434323627355,22.2060796963129 -00:00:26.0150,69.9580906657555,19.0509403499447,56.0321774998374,0.0985086218325549,22.2238062807342 -00:00:26.0202,69.9580435238385,20.0789894670552,59.0558513736919,0.103838802410492,22.2424018364204 -00:00:26.0253,69.9579937404924,21.2643987689954,62.5423493205746,0.109918039733009,22.2620352751835 -00:00:26.0305,69.957941017744,22.5371090470095,66.2856148441457,0.116360972308013,22.2828104970459 -00:00:26.0357,69.9578852191369,23.8322640559853,70.0948942823097,0.122826303270932,22.3047650281928 -00:00:26.0409,69.9578263579941,25.0915802711725,73.7987655034486,0.129022412519527,22.3278775848676 -00:00:26.0461,69.9577645789768,26.2647831904612,77.2493623248858,0.13471100490557,22.3520778656786 -00:00:26.0525,69.9576856993583,27.518131713612,80.9356815106235,0.140689347617891,22.3828881983568 -00:00:26.0588,69.9576035039717,28.5327488973828,83.9198496981846,0.145437095782707,22.4148954575807 -00:00:26.0668,69.9574966113919,29.4282528734983,86.553684922054,0.149515967338166,22.4563913768841 -00:00:26.0748,69.9573871993762,29.8978412422385,87.9348271830545,0.151528237371132,22.4987463113983 -00:00:26.0828,69.9572767496364,29.9785095827757,88.1720870081637,0.151682437111164,22.5414151489272 -00:00:26.0907,69.9571665594672,29.7409264758226,87.4733131641841,0.150326239788388,22.583925779813 -00:00:26.0987,69.9570576342426,29.2755034547888,86.1044219258493,0.147888225535659,22.6259137860966 -00:00:26.1067,69.9569506390147,28.6782700859199,84.347853193882,0.144819916702532,22.6671376224291 -00:00:26.1147,69.956845898584,28.03915437612,82.4681011062354,0.141546532751599,22.7074782912726 -00:00:26.1226,69.9567434341435,27.4337487778784,80.6874964055248,0.138430144527631,22.7469269875335 -00:00:26.1306,69.9566430236474,26.9186682554334,79.1725536924512,0.135746392215832,22.7855643427995 -00:00:26.1386,69.9565442737395,26.5300368495226,78.0295201456546,0.133674319091364,22.8235349538938 -00:00:26.1495,69.9564110427609,26.2290907160019,77.1443844588292,0.131962413252022,22.8747040362536 -00:00:26.1604,69.9562787016706,26.1791350433644,76.9974560098955,0.131473890624377,22.9254480421531 -00:00:26.1713,69.9561461234615,26.3351505161675,77.4563250475514,0.131985636218843,22.9761850371566 -00:00:26.1822,69.9560124459966,26.6296824213521,78.3225953569179,0.133162849600252,23.0272329101616 -00:00:26.1931,69.9558771568625,26.9883078149054,79.3773759261925,0.134639479767728,23.0787779489537 -00:00:26.2040,69.955740096365,27.3435314415146,80.4221512985725,0.13608834914342,23.1308750972192 -00:00:26.2149,69.9556013998922,27.6445877933015,81.3076111567692,0.137267930123027,23.1834710062398 -00:00:26.2284,69.9554281913727,27.9002077178718,82.0594344643288,0.138161236568619,23.2489897943937 -00:00:26.2462,69.9551973042437,28.0434149110799,82.4806320914115,0.138410421360684,23.3360646473933 -00:00:26.2641,69.9549658531332,28.0244580984982,82.4248767602888,0.137892243426913,23.4230738781528 -00:00:26.2819,69.954734744689,27.9387006259389,82.1726488998204,0.137063037774637,23.5096913322898 -00:00:26.2997,69.9545041835694,27.8742179297345,81.9829939109839,0.136339709139199,23.5958459867254 -00:00:26.3176,69.954273823457,27.8819633600247,82.0057745883081,0.135960879477609,23.6816651923511 -00:00:26.3397,69.9539878612063,27.9954497616808,82.3395581225907,0.135982004247431,23.7878273833235 -00:00:26.3618,69.9537004458574,28.1769483951606,82.8733776328254,0.136319992141261,23.8941092181854 -00:00:26.3839,69.9534112115717,28.3649385584857,83.426289877899,0.136684418884872,24.0006395434392 -00:00:26.4060,69.9531202778825,28.5172917234661,83.8743874219591,0.136879981552016,24.1073737262225 -00:00:26.4354,69.9527315047161,28.6571233263509,84.2856568422086,0.136847997885847,24.2493585715105 -00:00:26.4739,69.9522185419757,28.8014996875854,84.7102931987807,0.136627067637732,24.4356000305883 -00:00:26.5000,69.9518710492816,28.9048987340281,85.0144080412593,0.136507501341117,24.5610652731829 -00:00:26.5013,69.9518523652111,28.9186638258471,85.0548936054326,0.136538673979796,24.5677954604939 -00:00:26.5027,69.9518336664297,28.9498561493371,85.1466357333443,0.136649441583816,24.5745292109794 -00:00:26.5048,69.9518056778298,29.0401855287165,85.412310378578,0.137014365109765,24.5846047432216 -00:00:26.5069,69.9517775762882,29.1832605244817,85.8331191896522,0.137619161535017,24.5947160744043 -00:00:26.5090,69.951749313548,29.3756386063391,86.3989370774679,0.138447134675073,24.6048799041287 -00:00:26.5122,69.9517059561801,29.7487908089097,87.4964435556167,0.140068227670161,24.6204597968872 -00:00:26.5184,69.9516184482279,30.7040174690494,90.3059337324983,0.144232738890688,24.6518513637504 -00:00:26.5247,69.9515278794893,31.8749125979176,93.7497429350517,0.14931840870982,24.6842579406738 -00:00:26.5309,69.9514337949473,33.1590991974861,97.5267623455473,0.154846816611089,24.7178231859054 -00:00:26.5372,69.9513359966693,34.4623439257614,101.359835075769,0.160392235991543,24.7526004561423 -00:00:26.5434,69.9512345393967,35.7032436671689,105.009540197556,0.165601300284205,24.788557531809 -00:00:26.5497,69.951129692683,36.8160093926964,108.282380566754,0.170200870548077,24.8255922728202 -00:00:26.5574,69.95099484812,37.9508851143459,111.620250336311,0.174794239363961,24.8730569079219 -00:00:26.5669,69.9508269295485,38.8927021151053,114.390300338545,0.178463173713232,24.931945721168 -00:00:26.5764,69.9506559433393,39.3535951690795,115.745868144351,0.180073311704661,24.9917168167396 -00:00:26.5858,69.9504838443096,39.3855215291256,115.839769203311,0.179872372531325,25.0517351948615 -00:00:26.5953,69.9503122762771,39.088164470358,114.9651896187,0.178290282564103,25.1114721525523 -00:00:26.6047,69.9501424063603,38.5848512950597,113.484856750176,0.175845929062408,25.1705541591485 -00:00:26.6142,69.9499748694748,37.9993606946552,111.762825572515,0.173058072743153,25.2287785288444 -00:00:26.6238,69.9498062736194,37.4277050867097,110.081485549146,0.17032431561289,25.2873272575616 -00:00:26.6335,69.9496399624677,36.9644650944074,108.719014983551,0.168052881418753,25.3450318432741 -00:00:26.6431,69.9494753567175,36.6586139392816,107.819452762593,0.166453285643869,25.4020809183981 -00:00:26.6564,69.94925033682,36.51536119297,107.398121155794,0.165437157393007,25.479931799225 -00:00:26.6697,69.949025365954,36.6503231695579,107.795068145758,0.165604168175591,25.5575758035622 -00:00:26.6829,69.9487990434746,36.9764032923171,108.754127330344,0.166575814917054,25.6354652166922 -00:00:26.6962,69.9485705267656,37.3868837747035,109.961422866775,0.167893559085298,25.7138686615514 -00:00:26.7095,69.9483395824619,37.7843792200251,111.130527117721,0.169145311040964,25.7928566595613 -00:00:26.7228,69.948106475442,38.1012442547965,112.062483102343,0.170050423613459,25.8723401104632 -00:00:26.7394,69.9478128616377,38.3440673696372,112.776668734227,0.170535793301493,25.9721304457035 -00:00:26.7624,69.947404069132,38.4594170606049,113.115932531191,0.170288074683801,26.1105171437401 -00:00:26.7854,69.9469945649327,38.4499937129567,113.088216802814,0.169529138684983,26.2485424919169 -00:00:26.8084,69.9465848800644,38.4614058131203,113.121781803295,0.168863480810476,26.3860428643192 -00:00:26.8314,69.9461744662263,38.5724666408538,113.448431296629,0.168612680948747,26.5231946108361 -00:00:26.8544,69.9457623818567,38.7796463588599,114.057783408411,0.168756516695857,26.6602946665321 -00:00:26.8837,69.9452342753496,39.0908578456025,114.973111310596,0.169129246817079,26.8350936949794 -00:00:26.9130,69.9447022713762,39.3735802478814,115.804647787886,0.169381327618592,27.010175399521 -00:00:26.9423,69.9441668922608,39.5947825812311,116.455242885974,0.169382609659181,27.185375672873 -00:00:26.9894,69.9432999296636,39.900980991506,117.355826445606,0.169186743861785,27.4670411737228 -00:00:27.0000,69.9431049256208,39.9654969734128,117.545579333567,0.169127344452739,27.5300531679961 -00:00:27.0021,69.9430656803217,39.993836493795,117.628930864103,0.169176670045689,27.542719458052 -00:00:27.0042,69.9430263911528,40.0531228939688,117.80330262932,0.169349155436118,27.5553943120036 -00:00:27.0068,69.9429773985114,40.1792666490376,118.17431367364,0.169771790133585,27.5711906869561 -00:00:27.0095,69.9429282186256,40.3605030980758,118.707362053164,0.170412435389999,27.587036446403 -00:00:27.0129,69.9428645943229,40.6624646433135,119.59548424504,0.171507218148224,27.6075178217971 -00:00:27.0206,69.9427179908676,41.548075081958,122.200220829288,0.174767383040527,27.654620207729 -00:00:27.0283,69.9425679189617,42.6209654100357,125.355780617752,0.178732022582481,27.7026976687647 -00:00:27.0360,69.9424139660937,43.7545843312099,128.689953915323,0.182894165962976,27.7518643095848 -00:00:27.0437,69.9422560993107,44.8394936434735,131.880863657275,0.186827178114858,27.8021196814779 -00:00:27.0514,69.9420946291848,45.7907706301689,134.678737147556,0.190210519431505,27.8533624739317 -00:00:27.0608,69.9418915981228,46.695231043996,137.338914835282,0.193319712211374,27.9175904539445 -00:00:27.0727,69.9416347556226,47.3625627364675,139.301655107257,0.195414823020359,27.9985706377393 -00:00:27.0845,69.9413755441935,47.5547947246306,139.867043307737,0.195697924349375,28.0800536858822 -00:00:27.0963,69.9411162125245,47.3791653461012,139.350486312063,0.194591540670717,28.1613873673206 -00:00:27.1081,69.9408583418965,46.9876366488775,138.198931320228,0.192675296270586,28.2421166014146 -00:00:27.1199,69.940602696712,46.5355523659515,136.869271664563,0.190537045799192,28.3220235211829 -00:00:27.1317,69.9403492847484,46.1494090885585,135.733556142819,0.188655285050781,28.4011088793727 -00:00:27.1435,69.9400975542626,45.9093546124475,135.027513566022,0.187333068591696,28.4795348467337 -00:00:27.1584,69.9397819295023,45.854333037047,134.865685403079,0.186611023124089,28.5776454017682 -00:00:27.1768,69.9393880130193,46.0989341674202,135.585100492412,0.186897160881534,28.699696400467 -00:00:27.1953,69.9389912908635,46.5422423512272,136.888948091845,0.187924856892271,28.8221354997872 -00:00:27.2138,69.9385908345993,47.0092597411425,138.262528650419,0.189029653025037,28.9452238550297 -00:00:27.2323,69.9381869144185,47.374731347298,139.337445139112,0.1897453596363,29.068878487787 -00:00:27.2508,69.9377805020973,47.5954032770741,139.986480226689,0.189917965832721,29.1928189718544 -00:00:27.2782,69.9371759451532,47.7471846575494,140.432896051616,0.189525782527622,29.3763611901879 -00:00:27.3056,69.9365696080631,47.8427128594262,140.713861351253,0.188932078739138,29.559486776833 -00:00:27.3330,69.9359614109717,48.0121708606445,141.21226723719,0.188615691166018,29.7422221462593 -00:00:27.3604,69.9353503952953,48.2836515362344,142.010739812454,0.188674171276843,29.9248380289216 -00:00:27.4001,69.9344583220784,48.739346510531,143.351019148621,0.188981582316363,30.1897133465792 -00:00:27.4399,69.9335584289233,49.1604224708855,144.589477855546,0.189158414830111,30.4548613379499 -00:00:27.4796,69.932651461071,49.5155966114517,145.63410768074,0.189096628708733,30.7200739177135 -00:00:27.5000,69.9321836267724,49.6819250368317,146.123308931858,0.189008598271578,30.8561023846706 -00:00:27.5051,69.932065859422,49.7661700116531,146.371088269568,0.189137614042065,30.8902618042583 -00:00:27.5102,69.9319478029857,49.9220826206897,146.829654766734,0.189520693717185,30.9244687344404 -00:00:27.5153,69.9318292981542,50.1468990081411,147.490879435709,0.190146802683575,30.9587661384651 -00:00:27.5204,69.9317102048512,50.423614221947,148.304747711609,0.190954376164651,30.9931915606847 -00:00:27.5315,69.9314486328812,51.1012458295086,150.297781851496,0.192967298328028,31.0686448991956 -00:00:27.5427,69.9311835760659,51.7947731892219,152.337568203594,0.195019343393216,31.144884101419 -00:00:27.5538,69.9309152342897,52.398583368626,154.113480495959,0.196741391197168,31.2218497762883 -00:00:27.5649,69.9306442114641,52.8473046539578,155.433248982229,0.197910708415078,31.2993758248466 -00:00:27.5806,69.9302591350983,53.1891979629029,156.43881753795,0.198538268017456,31.4092055345461 -00:00:27.5963,69.9298725506459,53.2515271169587,156.62213857929,0.198194396363261,31.5191250273805 -00:00:27.6120,69.9294859999035,53.1520432601955,156.329539000575,0.197294554277136,31.6287269672754 -00:00:27.6277,69.9291001877284,53.0211152208267,155.944456531843,0.196292198087234,31.7378277433379 -00:00:27.6434,69.9287150138632,52.9586450386008,155.760720701767,0.195531933997927,31.8464568096912 -00:00:27.6626,69.9282428238908,53.0393888513382,155.998202503936,0.195147105627503,31.9792133413075 -00:00:27.6900,69.9275682208366,53.383023856672,157.008893696094,0.195386331137653,32.1680496913036 -00:00:27.7174,69.9268887957056,53.8342986745259,158.336172572135,0.195987742908239,32.3572351670615 -00:00:27.7448,69.9262042111315,54.2326996424692,159.507940124909,0.196401886050145,32.5468530133464 -00:00:27.7721,69.9255153568908,54.5183956716478,160.34822256367,0.196430940524259,32.7366689832701 -00:00:27.8123,69.9244984235024,54.8388516885308,161.290740260385,0.196141787885927,33.0151507045374 -00:00:27.8525,69.9234750790726,55.1764155671759,162.283575197576,0.195913868296985,33.2933407737044 -00:00:27.8927,69.922444633305,55.589304479245,163.497954350721,0.195937930828815,33.5714164833117 -00:00:27.9526,69.9208934091651,56.2427587730594,165.419878744292,0.196094954752069,33.98622983461 -00:00:28.0000,69.9196550198117,56.7356082188594,166.869435937822,0.196138410560656,34.3141985484185 -00:00:28.0056,69.9195060234841,56.7451953356484,166.897633340142,0.195982767200859,34.3534722048538 -00:00:28.0113,69.9193571070787,56.6792771957162,166.703756457989,0.195582209090812,34.3926886722121 -00:00:28.0170,69.9192084511081,56.5443854135375,166.307015922169,0.194958459891024,34.4318033494971 -00:00:28.0238,69.9190292660096,56.3210382456968,165.650112487344,0.194010130168057,34.4789101573406 -00:00:28.0364,69.918703254288,55.8647485116729,164.308083857861,0.192125119723456,34.5645082630169 -00:00:28.0489,69.9183797008431,55.4513887054161,163.092319721812,0.190386194503238,34.649320121662 -00:00:28.0615,69.9180580673629,55.1834850161494,162.304367694557,0.189126190630149,34.733481952183 -00:00:28.0770,69.9176630216278,55.1123158851865,162.095046721137,0.188421101871228,34.8366334138692 -00:00:28.0975,69.9171360695971,55.3797792819833,162.881703770539,0.188660025003504,34.9738117365919 -00:00:28.1181,69.9166056722872,55.8744524188283,164.33662476126,0.189627981132848,35.1113816863569 -00:00:28.1387,69.9160707522624,56.376912321113,165.814448003273,0.19061076282088,35.2496039020416 -00:00:28.1593,69.9155318213041,56.7430818174403,166.891417110119,0.19114823416782,35.3883475630371 -00:00:28.1799,69.9149901969876,56.9424477196235,167.477787410657,0.191149520903513,35.5272872814421 -00:00:28.2077,69.9142563011673,57.069629433269,167.85185127432,0.19070048928207,35.7147902844139 -00:00:28.2355,69.9135205917219,57.1886544202861,168.201924765547,0.19023050665797,35.9018977529481 -00:00:28.2633,69.9127825948173,57.4032074540953,168.83296310028,0.190066209370876,36.088727164034 -00:00:28.2979,69.9118601716829,57.7855397457102,169.957469840324,0.190225756537616,36.3210318126408 -00:00:28.3325,69.9109315976192,58.1947363303466,171.160989206902,0.190466094889026,36.5535353746487 -00:00:28.3752,69.9097783830225,58.6315214041874,172.445651188787,0.190547289157118,36.8404393998207 -00:00:28.4284,69.9083282353319,59.10735392187,173.845158593735,0.190433415484531,37.1983898063853 -00:00:28.5000,69.9063588787425,59.7674874028039,175.786727655306,0.190343379221343,37.6795946920546 -00:00:28.5022,69.9062968705862,59.7682689413098,175.78902629797,0.190279998487553,37.6946563289451 -00:00:28.5044,69.9062348865877,59.7275344876163,175.669219081225,0.190090260206712,37.709707144349 -00:00:28.5072,69.9061571869628,59.6057512219628,175.311033005773,0.189637150107,37.7285678037165 -00:00:28.5101,69.9060796931827,59.4105751923392,174.736985859821,0.188960778983503,37.7473724851007 -00:00:28.5138,69.9059779812171,59.060389212567,173.707027095785,0.187786383501686,37.7720464167713 -00:00:28.5219,69.9057572923142,58.0478064304133,170.728842442392,0.184464372916899,37.825559853165 -00:00:28.5301,69.9055407637775,56.8329174385877,167.155639525258,0.180520794941023,37.8780373370196 -00:00:28.5382,69.9053287945392,55.5903988273641,163.501173021659,0.176487435414949,37.9293847180058 -00:00:28.5463,69.9051212437387,54.4611995028529,160.179998537803,0.172798515939065,37.9796339718603 -00:00:28.5545,69.9049175205577,53.5443726761936,157.483449047628,0.169763451179302,38.0289233503301 -00:00:28.5645,69.9046700391427,52.787448615524,155.257201810365,0.167178646490656,38.0887442432202 -00:00:28.5777,69.9043489848944,52.4248366420301,154.190696005971,0.165747882170953,38.1662396902943 -00:00:28.5909,69.9040283625941,52.6671199278381,154.903293905406,0.166195292147252,38.243490970254 -00:00:28.6040,69.9037051837209,53.3121175040117,156.800345600034,0.167882445529734,38.3212030245341 -00:00:28.6172,69.9033777199576,54.1224116233719,159.183563598153,0.170065252696642,38.3997788437161 -00:00:28.6304,69.9030455741734,54.8867209913261,161.43153232743,0.172090792828383,38.4793055544827 -00:00:28.6435,69.9027094118238,55.462036289671,163.123636146091,0.173525451485178,38.5596215766006 -00:00:28.6567,69.9023705127314,55.7892433788388,164.086009937761,0.174196448600149,38.640424360468 -00:00:28.6754,69.9018887308467,55.8894716294453,164.380798910133,0.174039518207552,38.7550247144094 -00:00:28.6940,69.9014070408978,55.7331082759696,163.920906694028,0.173106969646264,38.8693017771894 -00:00:28.7127,69.900926692039,55.5320307525365,163.329502213343,0.17204476782638,38.9829688534933 -00:00:28.7313,69.9004474687334,55.442424654186,163.065954865253,0.171325448508387,39.0960790053641 -00:00:28.7500,69.8999682577139,55.5227999046716,163.302352660799,0.171122944534516,39.2088916682293 -00:00:28.7777,69.8992524292132,55.8576225286815,164.287125084357,0.171469760418496,39.3768492169956 -00:00:28.8055,69.8985320681134,56.2677980038124,165.493523540625,0.172037808345166,39.5451962057145 -00:00:28.8332,69.8978071952637,56.5945728456955,166.454626016751,0.172351169895659,39.7139242793747 -00:00:28.8610,69.8970789317223,56.8005816469947,167.060534255867,0.172302716435113,39.8827754586697 -00:00:28.9011,69.8960207548655,57.0235071340189,167.716197452997,0.172010978505191,40.1269528403918 -00:00:28.9413,69.8949577691855,57.2866303003387,168.490089118643,0.17184080435174,40.3708683419689 -00:00:28.9815,69.893889094968,57.6272664904874,169.491960266139,0.171899012120697,40.6147206961332 -00:00:29.0000,69.8933950960283,57.8014049903211,170.004132324474,0.171976034108773,40.7269840257759 -00:00:29.0016,69.8933520268504,57.8005024058494,170.001477664263,0.171935782885025,40.7367580704173 -00:00:29.0032,69.8933089722898,57.7637969475602,169.893520434001,0.171790965157657,40.7465267213341 -00:00:29.0054,69.8932496330769,57.6365478703804,169.519258442295,0.171367439829574,40.7599870505929 -00:00:29.0076,69.8931904699207,57.4216786026583,168.887290007818,0.170687966876827,40.7734040830501 -00:00:29.0098,69.8931315674174,57.1269727336472,168.020508040139,0.169775018409487,40.7867589562763 -00:00:29.0137,69.893030874879,56.4652955580159,166.074398700047,0.167750701876473,40.8095824640681 -00:00:29.0205,69.8928537837326,54.9265746176418,161.548748875417,0.163080606229842,40.8497039771067 -00:00:29.0274,69.8926820078808,53.0971773583553,156.168168701045,0.1575381199914,40.8885954265289 -00:00:29.0343,69.8925161280738,51.1752868578225,150.515549581831,0.151699269494003,40.9261216316467 -00:00:29.0412,69.8923561911608,49.3281758829065,145.082870243843,0.146059410091623,40.9622668634479 -00:00:29.0480,69.8922017741547,47.6844735932751,140.248451744927,0.141008311090939,40.9971225192617 -00:00:29.0549,69.8920521032312,46.3328634842159,136.273127894753,0.136821921563998,41.0308618020971 -00:00:29.0632,69.8918762824577,45.1610664368418,132.826665990711,0.133148038645697,41.0704373376925 -00:00:29.0735,69.8916623783741,44.413376749825,130.627578675956,0.130727106592477,41.1185078250167 -00:00:29.0838,69.8914503927592,44.3727463333871,130.508077451138,0.130454296406032,41.1660797265259 -00:00:29.0941,69.8912373731756,44.8855402239859,132.016294776429,0.131858173067331,41.2138358594193 -00:00:29.1044,69.8910211645967,45.752429648125,134.565969553309,0.134323280136231,41.26227196096 -00:00:29.1147,69.8908005641259,46.766340541592,137.548060416447,0.137215036793363,41.311660731694 -00:00:29.1250,69.8905752865731,47.7450343696657,140.426571675487,0.139982859378546,41.3620619003231 -00:00:29.1353,69.8903457967111,48.5534802806443,142.804353766601,0.142226259933971,41.4133636092786 -00:00:29.1456,69.8901130638775,49.1143084442884,144.453848365554,0.143721611960315,41.4653406999404 -00:00:29.1590,69.8898074903668,49.4520472457883,145.44719778173,0.144495700526853,41.5334999278622 -00:00:29.1724,69.8895009323073,49.4170288794068,145.344202586491,0.144163292293504,41.6017744100858 -00:00:29.1858,69.8891952382421,49.142158837906,144.535761287959,0.143122744363263,41.669746167016 -00:00:29.1992,69.8888914229513,48.7800305465034,143.470678077951,0.141827210656017,41.7371870718976 -00:00:29.2126,69.8885896477269,48.4612086477449,142.532966611014,0.140663387440941,41.8040622683865 -00:00:29.2260,69.8882894212692,48.2687435174997,141.966892698529,0.139876681717137,41.8704842517843 -00:00:29.2430,69.8879108998984,48.2424467390739,141.88954923257,0.13952701241714,41.9540783460288 -00:00:29.2640,69.8874394148062,48.4629956030267,142.538222361843,0.139840743843881,42.0579803774231 -00:00:29.2851,69.8869653211144,48.8114852300459,143.563191853076,0.140528100931302,42.1622171347955 -00:00:29.3061,69.8864881398473,49.130430262654,144.501265478394,0.141123898921157,42.2668937660663 -00:00:29.3272,69.8860084883485,49.3334801326409,145.098470978355,0.141376795182402,42.371869666318 -00:00:29.3536,69.8854039603983,49.4373386539491,145.403937217497,0.141251372371242,42.5038243449373 -00:00:29.3801,69.8847984576405,49.4702849427116,145.500838066799,0.140920605205321,42.6355969085497 -00:00:29.4065,69.88419223377,49.5326567967652,145.684284696368,0.140677512080594,42.7671320672154 -00:00:29.4330,69.883584766704,49.6660576599648,146.076640176367,0.140641622946853,42.8985466204268 -00:00:29.4754,69.882604769362,49.9556634862038,146.928422018246,0.140800949165505,43.1097436629212 -00:00:29.5000,69.8820369474124,50.1306109875121,147.442973492683,0.140914450249368,43.2316629926259 -00:00:29.5011,69.8820108822549,50.1288287652027,147.437731662361,0.140891440522338,43.237251680346 -00:00:29.5022,69.8819848237365,50.1047496024107,147.366910595326,0.140804304394393,43.2428382020542 -00:00:29.5037,69.8819490813446,50.0201274601829,147.118021941715,0.140536381191499,43.250499428394 -00:00:29.5053,69.8819134222784,49.8723389464242,146.683349842424,0.140086747071634,43.258141035298 -00:00:29.5068,69.88187789033,49.6629484120971,146.067495329697,0.139459752359402,43.2657534083038 -00:00:29.5090,69.8818287834316,49.2792226239054,144.93889007031,0.138320936995186,43.2762702683278 -00:00:29.5139,69.8817184758943,48.074815774419,141.396516983585,0.134769467795786,43.2998735259771 -00:00:29.5201,69.8815834225681,46.0496951908987,135.440279973232,0.128806562314742,43.3287212214337 -00:00:29.5263,69.8814546239041,43.6754919591344,128.457329291572,0.121792664791504,43.3561607842201 -00:00:29.5325,69.8813327642775,41.169503667493,121.086775492626,0.114346734588099,43.3820314195148 -00:00:29.5387,69.8812179776368,38.7161597775538,113.871058169276,0.107007187451569,43.4062933162816 -00:00:29.5449,69.8811099199023,36.4615788705214,107.239937854475,0.100213875224745,43.4290144737309 -00:00:29.5511,69.8810078787188,34.5126821303326,101.507888618625,0.0943003777362232,43.4503485607298 -00:00:29.5573,69.8809108861513,32.938647102121,96.8783738297675,0.0894921877291869,43.4705109503276 -00:00:29.5635,69.8808178236907,31.7740567876606,93.4531081990019,0.0859105504195143,43.4897552434138 -00:00:29.5697,69.8807275155709,31.0232782329372,91.2449359792271,0.0835816507254168,43.5083514274745 -00:00:29.5759,69.8806388081924,30.6655788535802,90.1928789811182,0.0824501138878765,43.5265665791995 -00:00:29.5821,69.8805506343919,30.6605657653999,90.1781346041172,0.0823953977733132,43.5446488309553 -00:00:29.5883,69.8804620621215,30.9536400590754,91.04011782081,0.0832496096869052,43.5628150575644 -00:00:29.5945,69.8803723277824,31.4812571212661,92.5919327096061,0.0848154138581493,43.5812424515335 -00:00:29.6007,69.8802808549775,32.1758378378468,94.6348171701377,0.0868829067995481,43.6000638894416 -00:00:29.6069,69.8801872598753,32.9701973638564,96.9711687172247,0.0892445829593082,43.6193667729199 -00:00:29.6141,69.8800764581116,33.924570818938,99.7781494674648,0.0920718088777193,43.6422761269953 -00:00:29.6213,69.8799625731208,34.8455556502587,102.486928383114,0.0947854521260527,43.665880284464 -00:00:29.6284,69.8798458210349,35.6668974556819,104.902639575535,0.0971884929879998,43.6901267054025 -00:00:29.6370,69.8797018238542,36.4573579113326,107.227523268625,0.0994764133378644,43.7200766051597 -00:00:29.6475,69.8795235216027,37.0770224224306,109.050065948325,0.101229713147434,43.7571967547625 -00:00:29.6580,69.8793431063391,37.3266438988903,109.784246761442,0.101877344024091,43.7947625170983 -00:00:29.6685,69.8791622111188,37.2597153297769,109.587398028755,0.101583983647966,43.8324023669789 -00:00:29.6790,69.8789821382643,36.967508695194,108.72796675057,0.100622704278034,43.8698211312584 -00:00:29.6895,69.8788037233058,36.5559277506643,107.517434560777,0.0993081273679661,43.9068298835245 -00:00:29.7000,69.878627311261,36.1246092010461,106.248850591312,0.0979360557014178,43.943350904236 -00:00:29.7104,69.8784528195771,35.7521784695293,105.153466086851,0.096740306318623,43.979403399907 -00:00:29.7209,69.8782798551386,35.4887057381248,104.378546288602,0.0958700266192515,44.0150770555724 -00:00:29.7347,69.878053279008,35.3366930823687,103.931450242261,0.0953057216610801,44.0617333350331 -00:00:29.7517,69.8777744937469,35.4080980181279,104.1414647592,0.0953810546379157,44.1190598643694 -00:00:29.7688,69.8774945223009,35.6607179489604,104.884464555766,0.0959935378766826,44.1765724435237 -00:00:29.7858,69.8772124788682,35.9631561665324,105.773988725095,0.0967507396433467,44.2344705608011 -00:00:29.8028,69.8769283537134,36.2095638647274,106.498717249198,0.0973389855988708,44.2927548795262 -00:00:29.8198,69.8766427418676,36.3477626008689,106.905184120203,0.0976055434290288,44.3512898277966 -00:00:29.8421,69.8762664871251,36.3819852709158,107.005839032105,0.0975202972579573,44.4282897289182 -00:00:29.8645,69.8758902374824,36.3289957017004,106.849987357942,0.0971789388189245,44.5051420978636 -00:00:29.8869,69.8755144024568,36.2813530194766,106.70986182199,0.0968547381853925,44.5817556041309 -00:00:29.9092,69.8751386953694,36.2940503417576,106.747206887522,0.0967089460042696,44.6581953596488 -00:00:29.9380,69.8746544836787,36.3959297317009,107.046852152061,0.0967726473861362,44.7565144779452 -00:00:29.9726,69.8740700932353,36.5598113228768,107.52885683199,0.0969693276888756,44.874899755944 -00:00:30.0000,69.8736064102445,36.6721302525326,107.859206625096,0.0970734422105494,44.9686210769785 -00:00:30.0012,69.8735849824319,36.6690088087728,107.850025908155,0.0970540113910759,44.9729476164703 -00:00:30.0025,69.8735635617508,36.64845847208,107.789583741412,0.0969837598858134,44.9772721083114 -00:00:30.0041,69.8735353042109,36.5846511959769,107.601915282285,0.0967840680002783,44.9829754466374 -00:00:30.0058,69.8735071128588,36.4774381318111,107.286582740621,0.0964577889362162,44.9886632589348 -00:00:30.0075,69.8734790199402,36.3286591422529,106.848997477215,0.0960102151016808,44.9943283692772 -00:00:30.0100,69.8734363914116,36.0306081457318,105.972376899211,0.0951197125474686,45.0029175258824 -00:00:30.0159,69.87333911644,35.0806872188157,103.178491820046,0.0922957605544363,45.0224722703465 -00:00:30.0219,69.8732448096912,33.8554922515399,99.5749772104114,0.0886578368261994,45.041354170773 -00:00:30.0278,69.8731540318783,32.4743371596482,95.5127563519065,0.0845493836839697,45.0594357353656 -00:00:30.0337,69.8730670702812,31.0448060182243,91.3082529947774,0.0802834299974606,45.076649788962 -00:00:30.0396,69.8729839423992,29.6579246085224,87.2291900250658,0.0761287886586134,45.092989443298 -00:00:30.0455,69.8729044386163,28.386472297477,83.4896244043441,0.0723042413987924,45.1084993405537 -00:00:30.0514,69.8728281739283,27.2845049631045,80.2485440091309,0.0689756031624442,45.1232646400762 -00:00:30.0573,69.8727546396573,26.3877470109261,77.6110206203708,0.0662551642673655,45.1373996794524 -00:00:30.0649,69.8726632174823,25.5652463224765,75.1919009484603,0.0637459743819146,45.1548548053435 -00:00:30.0725,69.8725740424051,25.1088469033483,73.8495497157302,0.0623385831211941,45.1717851659666 -00:00:30.0801,69.8724858943843,24.9901107381512,73.5003257004447,0.0619507074153285,45.188471185446 -00:00:30.0877,69.8723976828032,25.1571986190918,73.9917606443877,0.0624257912191589,45.2051639402304 -00:00:30.0953,69.8723085230798,25.5430112474835,75.1265036690691,0.0635590788448902,45.2220668150083 -00:00:30.1029,69.8722177765466,26.0736538937314,76.6872173345042,0.065124971207472,45.2393259899876 -00:00:30.1105,69.8721250610148,26.6760449642126,78.4589557770957,0.0669013786837217,45.25702808353 -00:00:30.1181,69.8720302372436,27.2841322698225,80.2474478524192,0.0686891067766793,45.2752036080057 -00:00:30.1257,69.8719333766905,27.8434468120306,81.8924906236195,0.0703254674002081,45.2938348064442 -00:00:30.1333,69.8718347164615,28.3138764843063,83.2761073067831,0.0716920191840658,45.3128663434885 -00:00:30.1431,69.8717050805553,28.7514740654407,84.5631590160022,0.0729460289125175,45.3379280149541 -00:00:30.1560,69.8715319142117,29.0265559480857,85.3722233767225,0.0736979123244532,45.3714481527937 -00:00:30.1690,69.8713579661449,29.0033750487326,85.3040442609782,0.0735631217170468,45.4051156397749 -00:00:30.1820,69.8711847026424,28.7756549985254,84.6342794074276,0.072821941921839,45.438598181937 -00:00:30.1949,69.8710130062927,28.4571699723473,83.6975587421978,0.071812390125717,45.4716962396854 -00:00:30.2079,69.8708431272866,28.1510373607733,82.7971687081568,0.0708405738313188,45.5043536368124 -00:00:30.2208,69.8706747999655,27.9289200088853,82.1438823790744,0.0701193572208979,45.5366310672926 -00:00:30.2338,69.8705074471857,27.823258178807,81.8331122906087,0.0697449661666645,45.5686597526404 -00:00:30.2516,69.8702778318031,27.8502346854993,81.9124549573508,0.0697423918465685,45.6125498646062 -00:00:30.2694,69.8700475178223,28.007161277639,82.3740037577617,0.0701248697095433,45.6565458690047 -00:00:30.2872,69.8698158396591,28.2017870483627,82.9464324951843,0.0706175928114392,45.7007977860801 -00:00:30.3050,69.8695827717475,28.3589919871136,83.4087999620988,0.07099804741752,45.7453106098921 -00:00:30.3228,69.8693487321665,28.4425389360693,83.6545262825567,0.0711598597309921,45.789989345089 -00:00:30.3466,69.8690353286723,28.4550145927289,83.691219390379,0.0710830056876369,45.8497527128958 -00:00:30.3704,69.8687220089231,28.4140726259584,83.5708018410541,0.0708491199333853,45.9094020281553 -00:00:30.3943,69.8684089968601,28.3847821948108,83.4846535141494,0.0706503079096126,45.9688873179698 -00:00:30.4181,69.8680960261696,28.4005246477941,83.5309548464534,0.0705845169243453,46.0282688144553 -00:00:30.4507,69.8676664114271,28.4783617205828,83.7598874134788,0.0706597090855273,46.1096535286324 -00:00:30.4833,69.8672355915348,28.5712814100547,84.0331806178078,0.0707786103230812,46.1911310558019 -00:00:30.5000,69.8670152070319,28.6117103562208,84.1520892830023,0.0708185521509758,46.2327592555077 -00:00:30.5314,69.8665988510077,28.6355047625287,84.2220728309669,0.0707402714893059,46.3112928769937 -00:00:30.5679,69.866114257251,28.6391821896389,84.2328887930555,0.0705796573576391,46.4025015563458 -00:00:30.6045,69.8656292375665,28.6729684460635,84.3322601354807,0.0705074817814173,46.4935842461581 -00:00:30.6410,69.8651433116138,28.7447274000039,84.5433158823643,0.0705459576486141,46.5846480105684 -00:00:30.6932,69.8644474960731,28.8540940651055,84.8649825444278,0.0706204256560159,46.7147370318061 -00:00:30.7454,69.8637494061871,28.9412014158888,85.1211806349671,0.0706298410505756,46.8448814218455 -00:00:30.8125,69.862848735545,29.0366803044636,85.4020008954811,0.0705939627440934,47.0122332318667 -00:00:30.9015,69.861649456216,29.1760114582976,85.8117984067576,0.0705829444243808,47.2341011072117 -00:00:31.0000,69.8603161405062,29.3396608240536,86.2931200707459,0.0705975841285418,47.4794951642387 -00:00:31.1000,69.8589576952548,29.371905443139,86.3879571857029,0.070231941739444,47.7280379403517 -00:00:31.1490,69.858290597101,29.4269493676706,86.549851081384,0.0701656833786534,47.8495515601795 -00:00:31.1980,69.8576216250384,29.5365975398099,86.8723457053231,0.0702541761301521,47.9710853654976 -00:00:31.2470,69.8569503969984,29.6404891387403,87.177909231589,0.0703256553400873,48.0927215006511 -00:00:31.2960,69.8562772176853,29.7147406488264,87.3962960259601,0.0703130598807528,48.2143937040453 -00:00:31.3719,69.8552301078691,29.8211795044348,87.7093514836317,0.070269043170828,48.4030030888347 -00:00:31.4479,69.8541788602271,29.9428931542589,88.0673328066438,0.0702677959342047,48.5915785656473 -00:00:31.5000,69.8534565593453,30.0322366512124,88.3301077976836,0.0702834987147558,48.7207032058527 -00:00:31.5349,69.8529715292118,29.997986890123,88.229373206244,0.0700316773346868,48.8071805230347 -00:00:31.5601,69.8526208557364,29.949383085383,88.0864208393618,0.0697838900876497,48.869569810897 -00:00:31.5854,69.8522704432082,29.9406937911413,88.0608640915922,0.0696479058908847,48.9318035916735 -00:00:31.6107,69.8519198065008,29.9855921639185,88.1929181291721,0.0696611835486303,48.9939851768988 -00:00:31.6464,69.8514234999232,30.0869204027328,88.4909423609788,0.0697848717302277,49.0818709781197 -00:00:31.6821,69.8509257227588,30.1766467487381,88.7548433786415,0.0698757358514111,49.169869137845 -00:00:31.7177,69.8504267927311,30.2313994979931,88.9158808764504,0.0698694689204015,49.2579120893424 -00:00:31.7737,69.8496427936915,30.2965208646835,89.1074143078926,0.0698024637776304,49.3959140519662 -00:00:31.8297,69.8488567754274,30.3772211459402,89.3447680762946,0.0697785697586844,49.5338536710964 -00:00:31.8856,69.8480684257898,30.4757370738601,89.6345208054708,0.0698034754317663,49.6717962505707 -00:00:31.9799,69.8467354699595,30.6331667384534,90.0975492307452,0.0698215175112892,49.90412270504 -00:00:32.0000,69.8464503221999,30.6646091721368,90.190026976873,0.0698194515216466,49.9536747965955 -00:00:32.0219,69.8461383006971,30.6277350633154,90.0815737156336,0.0696229878790977,50.0078222895678 -00:00:32.0395,69.8458903944066,30.5585544961491,89.878101459262,0.069358572782425,50.0507765851216 -00:00:32.0570,69.8456429780222,30.4970767253734,89.6972844863924,0.0691157278450489,50.0935823071177 -00:00:32.0796,69.8453239432535,30.4748900242424,89.632029483066,0.0689585336533205,50.1486966508596 -00:00:32.1079,69.8449241312885,30.531393205757,89.79821531105,0.0689912218127482,50.2176657020228 -00:00:32.1362,69.8445233652321,30.6313511097335,90.0922091462749,0.0691415713574947,50.2867114048611 -00:00:32.1645,69.8441214524594,30.7188998165835,90.3497053428926,0.0692576375943102,50.3558732951629 -00:00:32.1928,69.8437186616551,30.769788195207,90.4993770447263,0.0692740318213542,50.4250954461533 -00:00:32.2368,69.8430917851065,30.8122142493587,90.6241595569373,0.069200408029543,50.5326204066851 -00:00:32.2807,69.8424638789168,30.8596318908561,90.7636232084002,0.0691405534370173,50.6400654834942 -00:00:32.3247,69.8418346988185,30.9326066849143,90.9782549556303,0.0691496380870202,50.7474809948438 -00:00:32.3970,69.840797450888,31.0622214903218,91.3594749715347,0.0691901611126323,50.9240460203314 -00:00:32.4842,69.8395409648765,31.201587110686,91.7693738549589,0.0691928513848336,51.1370681269276 -00:00:32.5000,69.8393129896736,31.2243848326388,91.8364259783495,0.0691868212765136,51.1756176830593 -00:00:32.5182,69.8390497168722,31.1833044097479,91.7156012051408,0.0690001124165073,51.2200850136018 -00:00:32.5329,69.8388381720066,31.1043670173955,91.4834324041044,0.0687278700454285,51.2557659734729 -00:00:32.5475,69.8386271519557,31.020383552252,91.2364222125058,0.0684426783807543,51.291308316861 -00:00:32.5676,69.8383394414835,30.9533086575425,91.0391431104191,0.068180788462002,51.339693767171 -00:00:32.5876,69.8380520052988,30.9569725861201,91.0499193709415,0.0681078047573528,51.3879646876659 -00:00:32.6181,69.8376139420963,31.0518760228476,91.3290471260223,0.068234387594562,51.4614446623908 -00:00:32.6486,69.8371744786394,31.1725578146477,91.6839935724931,0.0684287373070372,51.5350726137808 -00:00:32.6792,69.8367336953212,31.2530971754203,91.9208740453538,0.0685158603215405,51.6088317106856 -00:00:32.7097,69.8362921144704,31.2858570679197,92.0172266703519,0.0684761777371043,51.6826159292718 -00:00:32.7538,69.8356519777191,31.3166626703456,92.1078313833693,0.0683750263877552,51.7893608780887 -00:00:32.7980,69.8350108344494,31.3727349837128,92.2727499520964,0.0683409194166195,51.8960241463846 -00:00:32.8422,69.8343682718606,31.4552993003255,92.515586177428,0.0683765623215832,52.0026888369419 -00:00:32.9100,69.8333784033141,31.5758443925301,92.870130566265,0.0684143017868587,52.1665607413602 -00:00:32.9779,69.8323851033935,31.6782093969533,93.1712041086863,0.0684039534141258,52.3304516122391 -00:00:33.0000,69.8320613143186,31.7085770004879,93.2605205896703,0.0683928944719679,52.3837562381211 -00:00:33.0149,69.831842331052,31.6701459919313,93.1474882115627,0.0682314082252072,52.4197646625712 -00:00:33.0273,69.8316605252987,31.5897464635541,92.9110190104533,0.067970856501441,52.4496237217077 -00:00:33.0397,69.8314792094869,31.4929892858418,92.6264390760054,0.0676679862765642,52.4793630877547 -00:00:33.0575,69.8312197157279,31.3851331398976,92.3092151173457,0.0673149633586931,52.5218584961315 -00:00:33.0754,69.8309608139823,31.3422653543997,92.1831333952933,0.067132183391902,52.5641911931992 -00:00:33.0990,69.8306175215413,31.3843547050591,92.3069256031151,0.0671481804112656,52.6202550265873 -00:00:33.1226,69.8302734827667,31.4891116639926,92.6150343058605,0.0673271632337449,52.6763888035523 -00:00:33.1463,69.8299283709259,31.5943345352552,92.924513338986,0.0675067133222018,52.7326571308838 -00:00:33.1699,69.8295823555797,31.6615996033543,93.1223517745714,0.0675870797306426,52.7890259870859 -00:00:33.2015,69.8291189845188,31.6948326476953,93.2200960226331,0.0675470972817383,52.8644150849538 -00:00:33.2418,69.8285281468388,31.7135071305021,93.275020972065,0.0674351098777235,52.960358481768 -00:00:33.2820,69.827936611374,31.7572758652344,93.4037525448071,0.067388441002676,53.0562120233944 -00:00:33.3223,69.8273439646848,31.8318294081029,93.6230276708908,0.0674213227610777,53.1520573790496 -00:00:33.3856,69.8264093678683,31.9483425712652,93.9657134448976,0.0674706519855154,53.302840267636 -00:00:33.4489,69.8254717533533,32.044231815785,94.2477406346617,0.0674664886246894,53.4536550519952 -00:00:33.5000,69.8247133143667,32.1145917711134,94.4546816797453,0.0674450727582322,53.5753117944811 -00:00:33.5117,69.8245394300192,32.0844496624251,94.3660284188973,0.067321720340105,53.6031555488405 -00:00:33.5234,69.8243658620911,32.0000154888595,94.1176926142926,0.0670595799243151,53.630918468257 -00:00:33.5351,69.8241928100138,31.8879838839165,93.7881878938721,0.0667271588478083,53.6585617259903 -00:00:33.5495,69.8239796024601,31.7607563115068,93.4139891514907,0.0663456175719649,53.6925659014104 -00:00:33.5673,69.8237189546275,31.6685498367352,93.1427936374566,0.0660417551848231,53.7340668599742 -00:00:33.5850,69.8234587022928,31.6611965656509,93.1211663695614,0.0659554188820568,53.7754481442863 -00:00:33.6112,69.8230749989947,31.755858356701,93.3995834020618,0.0660978949435296,53.8364019650829 -00:00:33.6373,69.8226900133913,31.8911415642502,93.7974751889711,0.0663433720642739,53.8975135447609 -00:00:33.6634,69.8223037113935,31.9900945320339,94.0885133295113,0.0664954141066915,53.9587889988214 -00:00:33.6895,69.8219165925755,32.0296176850019,94.2047578970645,0.0664957351255719,54.0201307919165 -00:00:33.7310,69.8213021480787,32.0426039002605,94.242952647825,0.0663700558337358,54.1173228824461 -00:00:33.7724,69.8206871515816,32.0696615436383,94.3225339518773,0.0662805918862401,54.2143901965003 -00:00:33.8138,69.8200711679621,32.1391928251304,94.5270377209717,0.0662989653890815,54.3114171627321 -00:00:33.8753,69.8191553589491,32.2574650071411,94.8748970798268,0.0663641699719748,54.4553384833347 -00:00:33.9367,69.8182366421086,32.3541294554816,95.1592042808283,0.0663743123672004,54.5993128352233 -00:00:34.0000,69.8172881993507,32.4386663473007,95.4078421979432,0.0663468774079183,54.7475113066936 -00:00:34.0103,69.8171322222743,32.4083542615344,95.318689004513,0.0662313408114223,54.7718365364821 -00:00:34.0207,69.8169765291807,32.3236443084275,95.0695420836102,0.065979338750523,54.796092925625 -00:00:34.0311,69.8168213104063,32.2062949364408,94.7243968718848,0.0656456592473516,54.8202440944948 -00:00:34.0439,69.8166319809196,32.0620535897143,94.3001576168069,0.0652361738883778,54.8496562584813 -00:00:34.0601,69.8163913711133,31.9291880648368,93.9093766612847,0.0648429137429004,54.8869678696238 -00:00:34.0763,69.8161514283842,31.8787765397418,93.7611074698287,0.0646572294263477,54.9241176383297 -00:00:34.0993,69.8158120331313,31.9309304698657,93.914501381958,0.0647046312362988,54.9766097975765 -00:00:34.1223,69.8154717516665,32.0593673559953,94.2922569293979,0.0649428479788394,55.0292035640169 -00:00:34.1452,69.8151302182115,32.1840644389908,94.6590130558552,0.0651709252751004,55.0819684735372 -00:00:34.1682,69.8147876775831,32.2577014535503,94.875592510442,0.0652707003730792,55.1348573522027 -00:00:34.1969,69.8143597036227,32.2807783586414,94.9434657607099,0.0652230928847439,55.2008640868266 -00:00:34.2322,69.8138322551669,32.2775231577407,94.9338916404137,0.0650856879112223,55.2820752280034 -00:00:34.2675,69.8133045354483,32.2996874593234,94.9990807627158,0.0650120597028182,55.3631770694212 -00:00:34.3028,69.8127761093624,32.3614099090911,95.1806173796796,0.0650369891766069,55.4442524664613 -00:00:34.3598,69.8119204237768,32.4734477288354,95.5101403789278,0.065107482418058,55.5752804888379 -00:00:34.4168,69.8110622246767,32.5622934152763,95.7714512214007,0.0651199836451698,55.7063659851604 -00:00:34.4738,69.8102018900132,32.6340880749977,95.9826119852872,0.0650901629099952,55.837437099179 -00:00:34.5000,69.8098064118516,32.6674133157275,96.0806273991985,0.0650774208870472,55.8975723833408 -00:00:34.5098,69.8096573058473,32.6358642482144,95.9878360241601,0.0649638210420371,55.9202216081195 -00:00:34.5197,69.8095084837224,32.5462538242155,95.724275953575,0.064707176118587,55.9428049858599 -00:00:34.5295,69.809360144783,32.4193479937544,95.3510235110423,0.0643588272749817,55.9652850951504 -00:00:34.5394,69.8092123893652,32.2842102656829,94.9535596049498,0.0639905070864165,55.9876431625628 -00:00:34.5538,69.8089971752692,32.1226616459336,94.4784166056869,0.0635414074765864,56.0201516167824 -00:00:34.5713,69.8087376678164,32.0213242576535,94.1803654636868,0.0632308209366855,56.0592786995402 -00:00:34.5926,69.8084211975402,32.0378347045217,94.2289256015345,0.0631977502804857,56.1069297235951 -00:00:34.6140,69.808104130258,32.1540044510089,94.5706013264967,0.0634099220162235,56.1546371987208 -00:00:34.6353,69.8077858963957,32.2915679530328,94.9751998618612,0.063674033734032,56.2025078168375 -00:00:34.6566,69.8074665514048,32.3907204536982,95.2668248638183,0.0638430575624257,56.2505307636163 -00:00:34.6780,69.807146524328,32.4317592092304,95.3875270859718,0.0638690413503313,56.2986253056377 -00:00:34.7136,69.8066111016645,32.4326529314962,95.3901556808713,0.0637464571546963,56.378976184802 -00:00:34.7493,69.8060755549439,32.4291003867249,95.3797070197791,0.0636134463473221,56.4591934753168 -00:00:34.7850,69.8055396024066,32.4708624672664,95.5025366684306,0.0635916309093192,56.5393300915107 -00:00:34.8286,69.8048822387955,32.5601330104643,95.765097089601,0.0636579892117016,56.6374558075047 -00:00:34.8723,69.80422324813,32.6432148482015,96.0094554358868,0.0637088461752441,56.7356504225646 -00:00:34.9255,69.8034191633368,32.7143191263409,96.2185856657086,0.0636973185015636,56.8552170033444 -00:00:35.0000,69.8022894548656,32.806573348803,96.4899216141264,0.0636631563490167,57.0227273461201 -00:00:35.0081,69.8021660375028,32.7812473549351,96.415433396868,0.0635736361496767,57.040990792472 -00:00:35.0162,69.8020428160573,32.7066641479053,96.1960710232509,0.0633648165024648,57.0592099481181 -00:00:35.0243,69.8019199405618,32.5947783352528,95.8669951036846,0.0630657592969921,57.0773571142711 -00:00:35.0342,69.8017707668635,32.439052670865,95.4089784437204,0.0626546433959867,57.0993548690385 -00:00:35.0484,69.8015589372126,32.2371709348193,94.8152086318214,0.0621178538624283,57.1305289751574 -00:00:35.0625,69.8013481900854,32.0990239909049,94.4088940908968,0.0617361774438594,57.1614793673055 -00:00:35.0796,69.8010943858167,32.0454335951311,94.2512752797973,0.0615502260613056,57.1986947695845 -00:00:35.1033,69.8007429095065,32.1270623437261,94.4913598344885,0.0616703815129617,57.2501839504067 -00:00:35.1269,69.8003902077526,32.2900714316323,94.9707983283302,0.0619868283326404,57.3018343384286 -00:00:35.1506,69.8000359708796,32.4302149465072,95.382985136786,0.0622470646727665,57.3537025603657 -00:00:35.1742,69.7996806543941,32.496373910984,95.5775703264235,0.0623280636869004,57.4057041670709 -00:00:35.2029,69.7992499928317,32.4973605258633,95.5804721348921,0.062235211532026,57.4686618132074 -00:00:35.2315,69.7988193751195,32.4749217654443,95.5144757807186,0.0620862447477576,57.5315153513486 -00:00:35.2601,69.7983887843047,32.4816615993288,95.5342988215553,0.0620078872321216,57.5942681283156 -00:00:35.2888,69.797957831456,32.528319053213,95.6715266270972,0.0620256410658325,57.6569917072004 -00:00:35.3363,69.7972405958402,32.6279265691476,95.9644899092577,0.0621079286822982,57.7612311699388 -00:00:35.3839,69.7965215130319,32.7079718404021,96.1999171776532,0.0621428569316316,57.8655451690199 -00:00:35.4314,69.7958009692411,32.7621311994777,96.3592094102286,0.0621156577899583,57.9698627733189 -00:00:35.5000,69.7947600198328,32.8437237310168,96.5991874441671,0.0620848952745106,58.1201890786576 -00:00:35.5071,69.7946508083888,32.8218196716315,96.5347637400927,0.0620090538237943,58.1359324680638 -00:00:35.5143,69.7945417516971,32.7545944409011,96.3370424732384,0.0618252228796513,58.1516417264928 -00:00:35.5215,69.7944329773106,32.6501574357427,96.029874811008,0.0615528030047066,58.167293682197 -00:00:35.5303,69.7943008569342,32.4976693112001,95.5813803270591,0.0611609110130485,58.1862773484012 -00:00:35.5436,69.7941003331331,32.2695444182139,94.9104247594527,0.0605742959878223,58.2150283887705 -00:00:35.5570,69.7939010351759,32.0912122412949,94.3859183567497,0.0601070180008121,58.2435364505334 -00:00:35.5704,69.7937025686886,31.9951074143219,94.1032571009469,0.0598362953548251,58.2718735183178 -00:00:35.5890,69.7934261545598,31.9966398053996,94.1077641335283,0.05978226904955,58.3112933747704 -00:00:35.6077,69.7931493015974,32.1064752785886,94.4308096429075,0.059986136301116,58.3507548937541 -00:00:35.6263,69.7928714133902,32.252669563411,94.8607928335616,0.0602759645282653,58.3903662242555 -00:00:35.6450,69.7925924236924,32.3738322574013,95.217153698239,0.0605055955090709,58.4301390501235 -00:00:35.6637,69.7923126469291,32.4394258612036,95.4100760623636,0.0606027401855294,58.4700160365093 -00:00:35.6903,69.7919117260107,32.4520887741588,95.4473199239965,0.0605487759699503,58.5271100713514 -00:00:35.7170,69.791510822018,32.424764855976,95.366955458753,0.0604001877461694,58.5841220201361 -00:00:35.7437,69.7911100748897,32.4141114389647,95.3356218793081,0.0602914744003738,58.6410267614962 -00:00:35.7704,69.7907091906235,32.4429509651954,95.4204440152804,0.0602764822036396,58.697877626345 -00:00:35.8125,69.7900762559353,32.5286107514444,95.6723845630717,0.0603478139330828,58.787520291458 -00:00:35.8546,69.7894418101606,32.6101675600856,95.9122575296635,0.0604090600552061,58.8772401837766 -00:00:35.8967,69.7888061033696,32.6635422510984,96.0692419149954,0.0604035905571209,58.9669919655995 -00:00:35.9619,69.7878184677504,32.7326641783065,96.2725417009014,0.0603629732621356,59.1061178009287 -00:00:36.0000,69.7872417769054,32.7784414905439,96.407180854541,0.0603522250583334,59.1871802893574 -00:00:36.0062,69.7871472268362,32.7612323718681,96.3565657996121,0.0602924536019223,59.20045676376 -00:00:36.0124,69.7870527887737,32.7041533928611,96.1886864495916,0.060139137412745,59.2137089221954 -00:00:36.0186,69.7869585643278,32.6118333160209,95.9171568118262,0.0599031903384683,59.2269185858744 -00:00:36.0263,69.7868432606537,32.4695763375993,95.4987539341156,0.0595458013065192,59.2430615652774 -00:00:36.0390,69.7866529337537,32.2207362583434,94.7668713480689,0.0589231746479324,59.2696494859532 -00:00:36.0517,69.7864639446316,32.0037854975148,94.1287808750435,0.0583759768969077,59.2959807054165 -00:00:36.0644,69.7862759900188,31.8609109862261,93.7085617241945,0.0580032115353806,59.3221097741198 -00:00:36.0806,69.786038036132,31.8049969163902,93.5441085776181,0.0578250012110528,59.3551374853637 -00:00:36.1015,69.7857299168608,31.8898388952403,93.7936438095304,0.0579633843311998,59.3978712448496 -00:00:36.1223,69.7854206656004,32.0591137752435,94.2915111036573,0.0582991763580367,59.4407625195545 -00:00:36.1432,69.7851099477164,32.2144342135956,94.7483359223399,0.058601411480234,59.4838707120632 -00:00:36.1641,69.7847981139762,32.2998795822486,94.9996458301431,0.0587394836533784,59.5271327202132 -00:00:36.1850,69.7844857963043,32.3124041243368,95.0364827186378,0.0587068359690445,59.5704354951255 -00:00:36.2131,69.7840659814153,32.2791131668167,94.9385681376961,0.0585460305159238,59.6285666913755 -00:00:36.2412,69.7836464400252,32.2549295634621,94.8674398925356,0.0584069069938684,59.686567024697 -00:00:36.2693,69.7832268645005,32.2769030519962,94.9320677999889,0.0583757256578233,59.7444915126801 -00:00:36.3067,69.7826671599168,32.3533749998163,95.1569852935774,0.0584441239155464,59.8216683463493 -00:00:36.3441,69.7821062141589,32.4320397291957,95.3883521446932,0.058517283992406,59.8989204810476 -00:00:36.3815,69.7815441993725,32.4834741096656,95.5396297343105,0.0585268895472711,59.9762171078007 -00:00:36.4354,69.7807332418059,32.5340648860892,95.6884261355565,0.0584861121447064,60.0875477229322 -00:00:36.5000,69.7797592735613,32.6058304343579,95.8995012775233,0.0584630825082978,60.2209379911308 -00:00:36.5057,69.7796728465812,32.589282186961,95.8508299616499,0.0584080424282681,60.2327564142881 -00:00:36.5114,69.7795865182386,32.5349972658435,95.6911684289515,0.0582657489109825,60.2445540456233 -00:00:36.5171,69.7795003785814,32.4460632845527,95.4295978957431,0.0580433826715443,60.2563150082021 -00:00:36.5241,69.7793958229693,32.3073727555294,95.0216845750866,0.057702424469414,60.2705712013932 -00:00:36.5363,69.7792147902269,32.0431184990109,94.2444661735614,0.0570564505751307,60.2951978404233 -00:00:36.5484,69.7790351566478,31.7989265509777,93.5262545616992,0.0564573952780168,60.3195628048646 -00:00:36.5606,69.7788566811774,31.6220251672362,93.0059563742243,0.0560145315760987,60.3437088516626 -00:00:36.5753,69.7786409387581,31.5258432250666,92.7230683090193,0.0557517760420737,60.3728405792199 -00:00:36.5964,69.7783328843873,31.5746509234383,92.8666203630537,0.0558074697149279,60.4143945074774 -00:00:36.6175,69.7780238463464,31.7467388593979,93.3727613511704,0.0561477247430204,60.456079121482 -00:00:36.6386,69.7777132177272,31.9262944336529,93.9008659813319,0.0565043171909263,60.4980009952953 -00:00:36.6596,69.7774012446161,32.0369035087088,94.2261867903201,0.0567010617757375,60.5401162970279 -00:00:36.6807,69.7770886089257,32.0624205123351,94.3012368009857,0.05670132048588,60.5823047022799 -00:00:36.7093,69.776664566898,32.0258305697908,94.1936193229141,0.0565378030045118,60.6394550090301 -00:00:36.7379,69.7762408982499,31.9875831026993,94.081126772645,0.0563709099083171,60.6964599669437 -00:00:36.7665,69.775817336327,31.9989689439075,94.1146145409043,0.0563185081703671,60.7533666617526 -00:00:36.7951,69.7753933402891,32.0556482142342,94.2813182771593,0.056370207956461,60.8102700809949 -00:00:36.8345,69.7748066161206,32.1428005134889,94.5376485690851,0.0564616527571218,60.8889333935191 -00:00:36.8740,69.774218642078,32.202242671456,94.7124784454588,0.0564892297444115,60.9676639588738 -00:00:36.9218,69.773506444041,32.2433871669081,94.8334916673766,0.0564520904176333,61.0628711639045 -00:00:36.9865,69.7725398547336,32.3058865485124,95.0173133779776,0.0564173103681959,61.1918008828572 -00:00:37.0000,69.7723380997018,32.321756073969,95.0639884528499,0.0564165488814599,61.21867132959 -00:00:37.0056,69.7722528463424,32.303485028678,95.010250084347,0.0563592408331945,61.2300198820524 -00:00:37.0113,69.7721676998498,32.2441309287338,94.8356792021581,0.056208240709962,61.2413466954464 -00:00:37.0170,69.7720827582178,32.1470475527618,94.5501398610642,0.0559712363235854,61.2526347267342 -00:00:37.0227,69.7719981036902,32.0236477717195,94.1871993285868,0.0556742827060197,61.26386967867 -00:00:37.0339,69.7718338249823,31.7577971759967,93.4052858117551,0.0550379374058426,61.2856214201569 -00:00:37.0450,69.7716708706502,31.500279816597,92.6478818135205,0.0544210093471374,61.3071310370881 -00:00:37.0561,69.7715090817075,31.2962213344011,92.0477098070619,0.0539265076514482,61.3284263678329 -00:00:37.0697,69.7713124688684,31.1541088482706,91.6297319066782,0.0535675264894431,61.3542453242674 -00:00:37.0878,69.7710512390303,31.1389701716105,91.5852063870897,0.0534873109459409,61.3884984206439 -00:00:37.1059,69.7707896013029,31.2634488273346,91.9513200803958,0.0537255319516786,61.4227932142781 -00:00:37.1240,69.7705267863444,31.4397426404855,92.4698312955457,0.0540812647543763,61.4572633565051 -00:00:37.1421,69.7702626661133,31.5903500399612,92.91279423518,0.054377750705223,61.4919307489196 -00:00:37.1603,69.7699975928394,31.6734892252571,93.1573212507561,0.0545201597393618,61.5267338662095 -00:00:37.1831,69.7696630147315,31.6861253562198,93.1944863418231,0.054489838299218,61.5706405944498 -00:00:37.2059,69.7693285349754,31.6439091448252,93.0703210141918,0.054334988344563,61.6144827991922 -00:00:37.2287,69.7689944232823,31.6037188684633,92.9521143190096,0.0541850586953156,61.6582138625649 -00:00:37.2515,69.7686605104744,31.5998239780272,92.9406587589037,0.0541177855233648,61.7018632783447 -00:00:37.2822,69.7682116368984,31.6485958589324,93.0841054674481,0.0541500119036646,61.7604807833535 -00:00:37.3220,69.7676278050551,31.7359930034534,93.34115589251,0.0542461571550247,61.8366459386599 -00:00:37.3618,69.7670426918057,31.7999115950853,93.5291517502507,0.0542887996546249,61.9128891922864 -00:00:37.4015,69.7664566941205,31.8332671916437,93.6272564460108,0.0542622196969973,61.9891418034071 -00:00:37.4652,69.7655173943085,31.8860890414207,93.7826148277078,0.0542184926147522,62.1111267900025 -00:00:37.5000,69.7650045526042,31.9241819184075,93.8946527011986,0.0542156334729407,62.1776068354723 -00:00:37.5048,69.7649331432776,31.9106888171641,93.8549671093062,0.0541728998106277,62.1868558828923 -00:00:37.5096,69.7648618044638,31.8639904054456,93.717618839546,0.0540554000026298,62.1960907108139 -00:00:37.5144,69.7647906058465,31.7848150448799,93.4847501319996,0.0538647991906868,62.2052993528486 -00:00:37.5203,69.7647053070962,31.6582622935507,93.112536157502,0.0535650917228421,62.216317158623 -00:00:37.5314,69.7645421703115,31.3729442605592,92.273365472233,0.0528944929264908,62.2373347228269 -00:00:37.5426,69.7643804970385,31.0823176039966,91.4185811882253,0.052212303311007,62.258089864652 -00:00:37.5538,69.7642201702479,30.8413162851005,90.7097537797072,0.0516423343962586,62.2786028522214 -00:00:37.5650,69.7640608631813,30.6826624367764,90.2431248140483,0.0512583468883889,62.2989300151801 -00:00:37.5800,69.7638478169129,30.6104592826154,90.0307625959278,0.0510605958920375,62.3260642933209 -00:00:37.5983,69.763587795814,30.6909786838754,90.2675843643394,0.0511993858013679,62.3591587493642 -00:00:37.6166,69.7633267581069,30.8694559122553,90.7925173889861,0.0515583149036511,62.3924001245667 -00:00:37.6349,69.7630642856386,31.0500398328953,91.3236465673391,0.0519212070424716,62.4258598910882 -00:00:37.6533,69.7628005937502,31.1687117960957,91.6726817532225,0.0521442402998508,62.4595007115572 -00:00:37.6716,69.76253623993,31.2071809833278,91.7858264215525,0.0521867558772579,62.4932267184474 -00:00:37.6984,69.7621488517957,31.1735036323554,91.6867753892805,0.0520469144060431,62.5425985887799 -00:00:37.7252,69.7617619258294,31.1147564450091,91.5139895441445,0.0518511874215431,62.5918306657885 -00:00:37.7521,69.7613753801824,31.097900454078,91.4644131002294,0.0517497751747565,62.6409372177107 -00:00:37.7789,69.7609886980801,31.1355147179895,91.5750432882044,0.0517705534322846,62.6900068020547 -00:00:37.8185,69.7604168613298,31.2235364760092,91.8339308117916,0.05187374435964,62.7625112003491 -00:00:37.8581,69.7598437187991,31.2920377897646,92.0354052640134,0.0519329039538798,62.8351070377007 -00:00:37.8977,69.7592696791022,31.3248156839959,92.1318108352821,0.0519121052137827,62.9077243915194 -00:00:37.9632,69.7583198984471,31.3713379335685,92.2686409810837,0.0518607961005243,63.0276418117151 -00:00:38.0000,69.7577856150519,31.4070175309301,92.373580973324,0.0518532802243043,63.0949756909019 -00:00:38.0053,69.7577083042584,31.3873077771954,92.3156111093982,0.0517968395645078,63.1047099570385 -00:00:38.0106,69.7576310989535,31.3250272974923,92.1324332279185,0.0516456860883806,63.1144239551256 -00:00:38.0159,69.7575540953668,31.222532560663,91.830978119597,0.0514050905003808,63.124101356526 -00:00:38.0212,69.7574773768032,31.0907493140345,91.4433803353957,0.0510993773378728,63.133728029688 -00:00:38.0315,69.7573295896074,30.8013309468461,90.5921498436649,0.0504313701022206,63.1522208671321 -00:00:38.0419,69.7571831704008,30.5089212865521,89.7321214310357,0.0497569857975767,63.1704728077514 -00:00:38.0522,69.75703801877,30.2608112902819,89.0023861478878,0.0491815650854649,63.188501018772 -00:00:38.0625,69.7568938632275,30.0866529163422,88.4901556363005,0.0487711886444443,63.2063517427616 -00:00:38.0766,69.756697432708,29.9834250470658,88.1865442560758,0.0485109628963957,63.2306227542348 -00:00:38.0946,69.7564469741962,30.0357810659176,88.3405325468164,0.0485891382444964,63.2615396530476 -00:00:38.1126,69.7561956465463,30.2099370640602,88.8527560707652,0.0489381192534317,63.2925795635492 -00:00:38.1307,69.7559428732157,30.4046397204731,89.4254109425679,0.0493320605666835,63.3238400654613 -00:00:38.1487,69.7556887605236,30.5452045369194,89.8388368732923,0.0496049584922208,63.3553027391574 -00:00:38.1667,69.7554338360596,30.6024865707144,90.0073134432777,0.0496924702155128,63.3868778467124 -00:00:38.1917,69.7550794800623,30.5798066913232,89.9406079156566,0.0495869833937562,63.4307347658551 -00:00:38.2168,69.7547255417841,30.513801521797,89.7464750641088,0.0493856625238363,63.4744724043 -00:00:38.2418,69.7543721159422,30.4758316098819,89.6347988525939,0.0492468756413125,63.5180749533134 -00:00:38.2668,69.7540187899002,30.4923208396894,89.6832965873217,0.0492289760642848,63.5616123921526 -00:00:38.3026,69.7535125193279,30.5677639207157,89.905188002105,0.0493180827509752,63.6239468270666 -00:00:38.3384,69.7530051225412,30.642344045904,90.1245413114823,0.0494049539096612,63.6863726681552 -00:00:38.3742,69.7524968399377,30.6821015310536,90.2414750913341,0.0494146376150977,63.7488491288649 -00:00:38.4214,69.7518263656415,30.7067615001791,90.3140044122914,0.0493661762250436,63.8311437331886 -00:00:38.4792,69.7510042283267,30.7495905910021,90.4399723264766,0.0493347920991181,63.9318671184423 -00:00:38.5000,69.7507090229154,30.7720185696781,90.5059369696413,0.0493391022660738,63.9679856895851 -00:00:38.5048,69.7506403758826,30.7551855756617,90.4564281637108,0.0492915690309798,63.9763798924211 -00:00:38.5096,69.7505718127799,30.6999039834971,90.2938352455796,0.0491594236131599,63.9847582203398 -00:00:38.5144,69.7505034142224,30.6070215294542,90.0206515572183,0.0489445520850256,63.9931071422159 -00:00:38.5192,69.7504352525065,30.4853140633347,89.6626884215728,0.0486662777513591,64.0014145257264 -00:00:38.5292,69.750295842273,30.1918038604449,88.7994231189555,0.0479989989880471,64.0183554256132 -00:00:38.5391,69.7501577989131,29.8820080699055,87.8882590291337,0.0472960780739827,64.0350594122924 -00:00:38.5490,69.7500210782248,29.6057350454593,87.0756913101745,0.0466672449372558,64.0515339980037 -00:00:38.5589,69.7498854584003,29.3967776999414,86.4611108821805,0.046187010152053,64.0678165548248 -00:00:38.5718,69.7497114453162,29.2500572075089,86.029580022085,0.045838567449633,64.0886494419283 -00:00:38.5899,69.7494660230131,29.2499755112263,86.0293397389009,0.0458032503176388,64.1179862242863 -00:00:38.6080,69.7492199910262,29.4114235825747,86.5041870075725,0.0461235855884035,64.1474028760573 -00:00:38.6261,69.7489724999329,29.6230830478743,87.1267148466891,0.0465537474183677,64.177041841138 -00:00:38.6442,69.7487234865809,29.7927844869828,87.62583672642,0.0468908360046771,64.2069133287308 -00:00:38.6623,69.7484734430982,29.875264635017,87.8684253971087,0.0470357064750709,64.2369344381658 -00:00:38.6804,69.7482230430435,29.8740187199268,87.864760940961,0.046996503243366,64.2669920626058 -00:00:38.7032,69.747908697999,29.8130723290887,87.6855068502608,0.0468170217632982,64.3046782316631 -00:00:38.7259,69.7475949258455,29.7507025246837,87.5020662490697,0.0466347374309157,64.3422318913304 -00:00:38.7487,69.7472815371211,29.7314889854716,87.4455558396225,0.0465474007703218,64.3796849526266 -00:00:38.7714,69.746968099151,29.7605456112475,87.5310165036691,0.046565996333884,64.4171099323337 -00:00:38.8056,69.7464961873317,29.8377375432134,87.7580515976863,0.0466672122456594,64.4734280087154 -00:00:38.8398,69.7460232504711,29.9024417577396,87.9483581109987,0.0467407852985911,64.5298351878965 -00:00:38.8740,69.7455496056585,29.9318844538107,88.0349542759139,0.0467370649119675,64.5862783343489 -00:00:38.9248,69.7448465353202,29.953501776095,88.0985346355736,0.0466834125064543,64.6699401028714 -00:00:38.9755,69.7441426831607,29.9887990280385,88.2023500824661,0.0466597188502983,64.7535515430922 -00:00:39.0000,69.7438028750949,30.015110604462,88.2797370719471,0.0466685411152876,64.7938696542741 -00:00:39.0038,69.7437488416275,30.0045230226007,88.2485971252961,0.0466377514253191,64.8002772527161 -00:00:39.0077,69.7436948539311,29.9663960660836,88.1364590178929,0.0465469566585743,64.8066761832437 -00:00:39.0116,69.7436409606524,29.8994535128478,87.9395691554347,0.0463933880210426,64.8130583610664 -00:00:39.0155,69.7435872083145,29.8084587478177,87.6719374935814,0.0461874306919983,64.8194160555266 -00:00:39.0235,69.743477696638,29.5760641011137,86.988423826805,0.0456653853263847,64.8323363434336 -00:00:39.0343,69.7433307247716,29.2174630453044,85.9337148391304,0.044862917434929,64.8495980872876 -00:00:39.0451,69.7431854789076,28.8718716604247,84.9172695894843,0.0440890396945737,64.8665649451323 -00:00:39.0559,69.7430417594945,28.5954861583755,84.1043710540455,0.0434664086368262,64.8832702223813 -00:00:39.0667,69.742899159116,28.4193645060945,83.5863661943955,0.0430628697873161,64.899781841243 -00:00:39.0809,69.7427122407957,28.3454549157119,83.3689850462114,0.0428766704656724,64.9213743712744 -00:00:39.0951,69.7425253537698,28.4167894866107,83.5787926076787,0.0430074975175706,64.9429491846899 -00:00:39.1093,69.742337759008,28.5742950822457,84.042044359546,0.043326001072225,64.9646292244946 -00:00:39.1235,69.7421490981745,28.753847933747,84.5701409816089,0.0436920581567598,64.9864739232463 -00:00:39.1378,69.7419593813526,28.9041921478437,85.0123298465991,0.0439939616019398,65.0084813767456 -00:00:39.1520,69.7417688773032,28.9968308672669,85.284796668432,0.0441698476050851,65.0306067270912 -00:00:39.1713,69.7415097700388,29.0283495932964,85.3774988038128,0.0442032934773688,65.0607050188018 -00:00:39.1949,69.7411926524398,28.9767658693648,85.2257819687199,0.0440481612840368,65.097504411341 -00:00:39.2185,69.7408761298238,28.9025007366311,85.0073551077385,0.0438440140173686,65.1341694213738 -00:00:39.2422,69.7405601412608,28.8664296173102,84.9012635803243,0.0437231814152758,65.1707103545488 -00:00:39.2658,69.7402442386077,28.8849616042315,84.9557694242102,0.0437211049107706,65.2072016480216 -00:00:39.3024,69.7397541251259,28.9620598363279,85.1825289303763,0.0438228021667801,65.2637874042028 -00:00:39.3390,69.739262894867,29.0319898412367,85.3882054154021,0.0439086330862298,65.3204729981177 -00:00:39.3756,69.7387708728181,29.0625329339012,85.4780380408859,0.0439089197566985,65.3772044582492 -00:00:39.4233,69.7381284399677,29.0773294884237,85.5215573188933,0.0438550899367631,65.4511775532368 -00:00:39.4710,69.7374854371291,29.1043490384396,85.6010265836459,0.0438277987361574,65.5251000990398 -00:00:39.5000,69.7370957028087,29.1325705400226,85.6840310000666,0.0438369033371512,65.5698540005489 -00:00:39.5036,69.7370465950427,29.1226257907439,85.654781737482,0.043808892989472,65.5754898645435 -00:00:39.5072,69.7369975274139,29.0868635780728,85.5495987590377,0.0437251351459518,65.5811182767557 -00:00:39.5109,69.7369485431863,29.0235715573771,85.3634457569914,0.0435819415634371,65.5867321114514 -00:00:39.5145,69.7368996844172,28.9368091279481,85.1082621410238,0.043388081697097,65.5923244424164 -00:00:39.5217,69.7368038789697,28.7208615741515,84.4731222769161,0.0429089891018541,65.6032619752167 -00:00:39.5321,69.736667013108,28.3572417690848,83.403652262014,0.0421054358397309,65.61881100108 -00:00:39.5424,69.7365318617991,27.9928625207453,82.3319485904273,0.0413003810290015,65.6340709094143 -00:00:39.5528,69.7363982914373,27.6859699302744,81.4293233243364,0.0406198026809642,65.6490638015111 -00:00:39.5631,69.7362659553547,27.4721921028215,80.8005650082986,0.0401408577079647,65.6638469476697 -00:00:39.5762,69.7361000556577,27.3509602383867,80.4440007011375,0.0398581245952395,65.6823187853202 -00:00:39.5921,69.7358980012591,27.3906562704286,80.5607537365547,0.039919199456402,65.7047887749538 -00:00:39.6081,69.7356952298832,27.5617278181298,81.0639053474405,0.0402641168472661,65.7273629916289 -00:00:39.6240,69.7354911265217,27.7719123854654,81.6820952513687,0.0406929571764121,65.7501426436233 -00:00:39.6399,69.7352856595053,27.9457332064667,82.1933329601962,0.0410426186723732,65.7731326500449 -00:00:39.6559,69.7350792141706,28.0428125532316,82.4788604506813,0.0412262062006898,65.7962692765175 -00:00:39.6752,69.7348285130112,28.0578450547041,82.5230736903062,0.0412271195362687,65.8243715396734 -00:00:39.6945,69.7345779542832,28.0013421853032,82.3568887803034,0.0410738500668269,65.8524289437211 -00:00:39.7138,69.7343279187955,27.9284308005835,82.142443531128,0.0408854309575411,65.8803789312184 -00:00:39.7331,69.7340783805895,27.8818472057698,82.0054329581466,0.0407539781120226,65.9082259020099 -00:00:39.7524,69.7338290569141,27.8784520722497,81.9954472713227,0.0407157078276105,65.9360164447859 -00:00:39.7838,69.7334240990861,27.9326902242506,82.1549712477959,0.040782247899895,65.9811307332222 -00:00:39.8151,69.7330183122584,28.0046595895047,82.3666458514843,0.0408867248102437,66.0263254117109 -00:00:39.8465,69.7326117532015,28.0491106785994,82.4973843488217,0.040931808487876,66.0715909902164 -00:00:39.8778,69.7322047812869,28.0617063998122,82.534430587683,0.0409083736874824,66.1168684184754 -00:00:39.9269,69.7315671308399,28.0727510006385,82.5669147077604,0.0408531336980727,66.1877143466452 -00:00:39.9759,69.7309289142673,28.1033944346548,82.657042454867,0.040840019139974,66.2585161978772 -00:00:40.0000,69.7306163836599,28.1274717843502,82.7278581892654,0.0408530634550965,66.293152825221 -00:00:40.0033,69.7305726620625,28.1186894309574,82.7020277381099,0.0408288568271727,66.2979961347672 -00:00:40.0067,69.7305289736034,28.0864805430071,82.6072957147268,0.0407544707950422,66.3028333899639 -00:00:40.0100,69.7304853550347,28.028749285111,82.4374978973852,0.0406254229175806,66.3076585860111 -00:00:40.0134,69.7304418427396,27.9487336711492,82.2021578563212,0.0404486512226407,66.3124657788694 -00:00:40.0197,69.730359807137,27.7545846903065,81.631131442078,0.040022618308401,66.3215054063747 -00:00:40.0298,69.7302321358228,27.3882915709451,80.553798738074,0.0392220628140681,66.3354994996913 -00:00:40.0398,69.7301061699399,27.0059041058919,79.4291297232114,0.0383870711745863,66.3492092995052 -00:00:40.0498,69.7299818414129,26.6683628733824,78.4363613923012,0.03764836667141,66.3626459824381 -00:00:40.0598,69.7298588621773,26.41606205769,77.6943001696763,0.0370927356996009,66.3758567463722 -00:00:40.0719,69.7297108952254,26.2485721663071,77.2016828420796,0.0367164057063898,66.3916804357989 -00:00:40.0879,69.7295166767978,26.2353979844251,77.1629352483093,0.0366662527467524,66.412404559224 -00:00:40.1038,69.729321997727,26.3876956968934,77.6108696967452,0.0369710831813338,66.4331916829685 -00:00:40.1198,69.7291260241635,26.6075045550572,78.2573663384036,0.0374201684499669,66.4541781021725 -00:00:40.1358,69.7289285654313,26.806738027349,78.8433471392617,0.0378244778934427,66.475394712075 -00:00:40.1518,69.728729940583,26.9313692132134,79.2099094506276,0.0380684729372931,66.4967890706005 -00:00:40.1677,69.7285307180896,26.9681296905428,79.3180285015965,0.0381241009862086,66.5182681122959 -00:00:40.1894,69.7282605954164,26.9214595437035,79.1807633638337,0.0379929859038618,66.5473670000068 -00:00:40.2111,69.7279910711529,26.833486023543,78.922017716303,0.0377737333994126,66.5763444188953 -00:00:40.2327,69.7277222334718,26.7704682839461,78.736671423371,0.0376081355469547,66.6051861409582 -00:00:40.2544,69.7274537317382,26.7617440002423,78.7110117654185,0.03755880675096,66.633949518567 -00:00:40.2837,69.7270904359655,26.8130475000613,78.8619044119449,0.0376269733847699,66.6728471312628 -00:00:40.3130,69.7267263995778,26.8830695762309,79.0678516947968,0.03773492786642,66.7118224453138 -00:00:40.3422,69.7263616507545,26.9278193806056,79.199468766487,0.0377887318580682,66.7508707210755 -00:00:40.3715,69.7259965225348,26.9397725494517,79.2346251454461,0.0377724963207775,66.7899376323441 -00:00:40.4189,69.7254055584996,26.9436908369104,79.2461495203246,0.037713437424789,66.8530880019327 -00:00:40.4663,69.724814218313,26.9648112364059,79.3082683423703,0.0376911206661812,66.9161867991734 -00:00:40.5000,69.7243938342037,26.9946317434778,79.3959757161112,0.0377068050022983,66.9609972002418 -00:00:40.5031,69.7243544067649,26.9864600967317,79.3719414609757,0.0376849429845529,66.9651976073971 -00:00:40.5063,69.7243150081619,26.9564187931838,79.2835846858348,0.037616565026531,66.9693928367641 -00:00:40.5094,69.724275671109,26.9021469552453,79.1239616330743,0.0374966548911865,66.9735775806419 -00:00:40.5126,69.7242364283851,26.8263507678521,78.9010316701533,0.0373309692710056,66.977746521179 -00:00:40.5183,69.7241651497983,26.6477203133546,78.3756479804546,0.0369428823711852,66.9852980954871 -00:00:40.5280,69.7240462916798,26.2792424904293,77.2918896777332,0.0361454010688293,66.997816671608 -00:00:40.5377,69.7239291262681,25.8827330343809,76.1256853952379,0.0352882485983556,67.0100558862295 -00:00:40.5474,69.7238136345867,25.5207221051753,75.0609473681625,0.034504591745217,67.0220188373077 -00:00:40.5571,69.7236995756435,25.2368776667288,74.2261107844965,0.0338875941948879,67.0337447191613 -00:00:40.5669,69.7235865591079,25.0538373916425,73.6877570342426,0.0334856339601537,67.0452970374155 -00:00:40.5812,69.723420882103,24.9656903381353,73.4285009945157,0.0332806861012676,67.0621745534874 -00:00:40.5954,69.7232552416617,25.0502915130399,73.6773279795292,0.0334440729062035,67.0790375264228 -00:00:40.6097,69.7230887647799,25.2353445038189,74.2216014818204,0.0338212304011518,67.0960278362817 -00:00:40.6240,69.7229210381768,25.4437862956959,74.8346655755763,0.0342476756110321,67.1132124659553 -00:00:40.6383,69.7227520908598,25.6148759300527,75.3378703825081,0.0345940839342228,67.1305864706828 -00:00:40.6526,69.722582257723,25.7157008555857,75.6344142811344,0.0347906398401675,67.1480952800853 -00:00:40.6713,69.7223603242431,25.7408299078731,75.7083232584504,0.0348205937813797,67.1709920896862 -00:00:40.6899,69.7221384901494,25.6842086683502,75.5417902010301,0.0346767924844364,67.1938573715546 -00:00:40.7086,69.7219172037446,25.6013338073346,75.2980406098076,0.0344773741651044,67.2166184845456 -00:00:40.7272,69.7216965043297,25.5389377867468,75.1145229021964,0.0343216777668771,67.2392691676444 -00:00:40.7458,69.7214761434592,25.5196602729914,75.0578243323277,0.0342577306418744,67.2618497943305 -00:00:40.7734,69.7211505615755,25.555148982277,75.1622028890501,0.0342991631921714,67.2951926980319 -00:00:40.8009,69.7208243980813,25.620716059689,75.3550472343794,0.0344043093026254,67.3285967248521 -00:00:40.8284,69.7204975619651,25.6708105239969,75.5023838941085,0.0344764413370505,67.3620764909659 -00:00:40.8560,69.7201703080508,25.6890716179863,75.5560929940774,0.0344809737947065,67.3955906584517 -00:00:40.9013,69.7196308815786,25.6901184373506,75.5591718745605,0.0344269317612077,67.4507730388247 -00:00:40.9467,69.7190912471684,25.6987611992643,75.5845917625422,0.0343890782434007,67.5058989954012 -00:00:40.9921,69.7185511540004,25.7302898710964,75.6773231502834,0.0343996720622446,67.5610090626957 -00:00:41.0000,69.7184570454426,25.7380486317337,75.7001430345109,0.034406308559674,67.5706060836674 -00:00:41.0031,69.7184197519173,25.7291994978449,75.6741161701321,0.034383725779157,67.5744083223145 -00:00:41.0062,69.7183824890155,25.6976233592257,75.5812451741933,0.0343130944225324,67.5782051939707 -00:00:41.0093,69.7183452902531,25.6408414288731,75.4142394966857,0.0341891777611962,67.5819912935585 -00:00:41.0125,69.7183081893784,25.5616301297584,75.1812650875247,0.0340178444734086,67.5857611786756 -00:00:41.0180,69.7182431543234,25.3819478172611,74.6527876978267,0.0336311508894358,67.5923483519848 -00:00:41.0275,69.7181327473446,25.0039810906109,73.5411208547379,0.0328203009903251,67.6034537032122 -00:00:41.0369,69.7180240432321,24.5939258473304,72.33507602156,0.0319414840132131,67.6142804686514 -00:00:41.0464,69.7179170400734,24.2144584737283,71.2189955109657,0.0311273739827565,67.6248289499056 -00:00:41.0559,69.7178115170745,23.9103246815399,70.3244843574702,0.0304728764989696,67.6351348242807 -00:00:41.0653,69.7177071015066,23.705997366266,69.7235216654882,0.0300300040382748,67.6452583623272 -00:00:41.0790,69.7175578828729,23.5907392845424,69.3845273074778,0.0297718734786313,67.6596586039016 -00:00:41.0926,69.7174088592827,23.6502744153785,69.5596306334661,0.0298843527725245,67.6740206795786 -00:00:41.1062,69.7172591587521,23.8206738167551,70.0608053433973,0.0302315512875802,67.6884855299317 -00:00:41.1198,69.7171083098549,24.0296133771983,70.675333462348,0.0306599284805203,67.7031291998559 -00:00:41.1334,69.7169562501471,24.2158002660136,71.2229419588635,0.0310396403067716,67.7179615745089 -00:00:41.1470,69.7168032261739,24.3410216607228,71.5912401785964,0.0312899768018786,67.7329426584918 -00:00:41.1640,69.7166124523089,24.3972660676241,71.7566649047768,0.0313906649756397,67.7516530647077 -00:00:41.1850,69.7163750975698,24.3549081942014,71.6320829241219,0.0312784147779456,67.7749204184656 -00:00:41.2060,69.7161383411043,24.2588062450241,71.3494301324237,0.0310527465512239,67.7980745156093 -00:00:41.2271,69.7159023653306,24.1795583625701,71.1163481252061,0.0308629360572552,67.8210860747664 -00:00:41.2481,69.7156668698195,24.1539398232386,71.0409994801135,0.0307866129388196,67.8440036594415 -00:00:41.2746,69.715370443353,24.1888151364991,71.1435739308797,0.030832368868298,67.8728317275622 -00:00:41.3011,69.7150734710555,24.2533517087469,71.3333873786675,0.0309406226666177,67.9017215493254 -00:00:41.3276,69.7147758598524,24.3029725980637,71.4793311707756,0.031017227907309,67.9306880070023 -00:00:41.3541,69.714477854909,24.3204921951916,71.5308593976223,0.0310260291499246,67.9596915458156 -00:00:41.3970,69.7139939071703,24.3167691578668,71.5199092878435,0.0309725329802002,68.0067444621201 -00:00:41.4400,69.7135098867481,24.3176930536152,71.5226266282799,0.0309289270915005,68.0537398499052 -00:00:41.4830,69.7130255705906,24.3421842234287,71.5946594806728,0.0309349784324585,68.1007135921747 -00:00:41.5000,69.712834837488,24.3572239518478,71.6388939760229,0.0309487140523021,68.1192022692822 -00:00:41.5030,69.7128006435694,24.3483412321148,71.6127683297493,0.0309268146635048,68.1225158401904 -00:00:41.5060,69.7127664789945,24.3170279631141,71.5206704797474,0.0308577290797163,68.125824358156 -00:00:41.5090,69.7127323760672,24.2606431369306,71.3548327556784,0.030735904040856,68.1291226393826 -00:00:41.5121,69.7126983674854,24.181765311,71.12283915,0.0305667612355987,68.1324054368206 -00:00:41.5172,69.712640974708,24.0092702766654,70.6155008137218,0.0301984328769634,68.1379251857999 -00:00:41.5265,69.7125393124545,23.6272000356627,69.4917648107728,0.029384798426579,68.1476227502687 -00:00:41.5357,69.7124393431651,23.2057559047311,68.2522232492092,0.0284881288473328,68.1570453830417 -00:00:41.5449,69.7123410936122,22.807966747082,67.0822551384764,0.027641163622387,68.1661887531882 -00:00:41.5541,69.7122443744349,22.4801583736799,66.1181128637646,0.026941673596553,68.1750832864466 -00:00:41.5633,69.7121488398006,22.2493394920636,65.4392338001869,0.0264467922361391,68.1837846146926 -00:00:41.5762,69.7120167594629,22.09990978916,64.999734674,0.0261206630625467,68.1957347825004 -00:00:41.5891,69.7118850636307,22.124644808406,65.0724847306059,0.0261621192851734,68.2076181655734 -00:00:41.6019,69.7117528990731,22.2703751894785,65.5011034984661,0.0264586869759631,68.219572062634 -00:00:41.6148,69.7116197416149,22.4720310626593,66.0942090078214,0.0268728217246851,68.2316807035263 -00:00:41.6276,69.7114854283986,22.6697923073274,66.6758597274334,0.0272782970332723,68.243970114509 -00:00:41.6405,69.7113500962148,22.8211218924307,67.1209467424431,0.0275855729505138,68.2564181366732 -00:00:41.6533,69.7112140680386,22.90571864508,67.3697607208235,0.0277520880183758,68.268972745343 -00:00:41.6731,69.711004520712,22.918356705376,67.4069314864001,0.0277607834659064,68.2883291117781 -00:00:41.6929,69.7107952234261,22.8410509644781,67.1795616602297,0.0275802698058145,68.3076328934003 -00:00:41.7126,69.7105866533147,22.7437274724628,66.8933160954787,0.0273578262455595,68.3268075713878 -00:00:41.7324,69.7103787736761,22.6796377658952,66.7048169585153,0.0272054906075406,68.3458591524941 -00:00:41.7522,69.7101712254772,22.6689065115423,66.6732544457126,0.0271655064127202,68.3648453487304 -00:00:41.7826,69.7098509903584,22.7197789854693,66.8228793690274,0.0272456101758857,68.3941374432498 -00:00:41.8131,69.7095300054584,22.7889685090218,67.0263779677111,0.0273640361682792,68.4235207655501 -00:00:41.8436,69.7092083461992,22.8263713168466,67.1363862260194,0.0274155142443487,68.4529830899296 -00:00:41.8740,69.7088864182367,22.8271395491908,67.1386457329142,0.0273900201879996,68.4824593332204 -00:00:41.9167,69.7084353094286,22.8161540090923,67.1063353208598,0.0273290569225016,68.523711050886 -00:00:41.9594,69.7079841461116,22.8241895824891,67.1299693602621,0.0273080774750109,68.5649143804755 -00:00:42.0000,69.7075557002239,22.8509356815824,67.2086343575953,0.0273282509051499,68.6040125172006 -00:00:42.0024,69.7075297405558,22.8455520864181,67.1928002541708,0.0273147943206798,68.6063803622373 -00:00:42.0049,69.7075037957741,22.82501492962,67.1323968518236,0.027269583377629,68.6087456393129 -00:00:42.0079,69.7074720781376,22.7757363571173,66.9874598738745,0.0271636589332828,68.6116335364811 -00:00:42.0109,69.7074404455954,22.7020892831944,66.7708508329247,0.0270066707465495,68.6145075489196 -00:00:42.0151,69.707396494891,22.5665800140217,66.3722941588874,0.0267189869103267,68.6184861000879 -00:00:42.0238,69.7073054939188,22.2052755457018,65.3096339579466,0.0259539648847391,68.6266502856655 -00:00:42.0314,69.7072284098136,21.8487936988613,64.2611579378274,0.0251999370731093,68.6334758372541 -00:00:42.0314,69.7072284098136,21.8487897867526,64.2611464316251,0.0251999370730614,68.6334758372545 -00:00:42.0314,69.7072284098136,21.8487897867307,64.2611464315609,0.0251999370730152,68.6334758372548 -00:00:42.0358,69.7071840828104,21.6361781052219,63.6358179565351,0.02475025120773,68.6373438927309 -00:00:42.0403,69.7071401653019,21.436302159842,63.0479475289469,0.0243272487422793,68.6411458399081 -00:00:42.0447,69.7070966225822,21.2533663656072,62.5099010753154,0.0239397786943303,68.6448872319165 -00:00:42.0491,69.7070534135287,21.0905025823346,62.030889948043,0.0235944429168063,68.6485746536466 -00:00:42.0535,69.7070104194709,20.942746291717,61.596312622697,0.0232808213894733,68.6522272700301 -00:00:42.0618,69.7069311217445,20.7247929544588,60.955273395467,0.0228169967213615,68.6589176164205 -00:00:42.0752,69.706802717364,20.5365884360739,60.401730694335,0.0224121790073916,68.6696616127363 -00:00:42.0891,69.7066703278622,20.537249693649,60.4036755695558,0.0224041809652437,68.6806907077443 -00:00:42.1030,69.7065375204714,20.6804788776451,60.8249378754268,0.0226957352268052,68.6917821526217 -00:00:42.1169,69.7064036303899,20.8910776584386,61.4443460542311,0.0231284729776896,68.7030424042152 -00:00:42.1308,69.7062684411275,21.0980141229188,62.0529827144671,0.0235530508099864,68.7145059743932 -00:00:42.1447,69.7061321191849,21.2510531061469,62.5030973710204,0.0238641047630151,68.7261460106649 -00:00:42.1478,69.7061025840889,21.2740787494227,62.5708198512433,0.0239102171848334,68.7286744355696 -00:00:42.1478,69.7061025840889,21.2740815027651,62.570827949309,0.0239102171848398,68.72867443557 -00:00:42.1567,69.706014381626,21.3043588965752,62.6598791075741,0.0239671344088226,68.7362436988856 -00:00:42.1656,69.7059261670055,21.3072954189204,62.6685159380011,0.0239666917052886,68.7438128223872 -00:00:42.1775,69.7058088427292,21.2808819463388,62.5908292539378,0.0239025299452529,68.7538651675366 -00:00:42.1958,69.705628931136,21.2175134034818,62.4044511867113,0.0237562469554069,68.7692498264891 -00:00:42.2141,69.7054495296756,21.1489712228409,62.2028565377672,0.0235992373230381,68.7845451152274 -00:00:42.2381,69.7052149718984,21.0943300130076,62.0421470970812,0.0234674010472018,68.8044834936942 -00:00:42.2621,69.7049807115709,21.0913326818727,62.0333314172728,0.0234439222408691,68.8243597970678 -00:00:42.2962,69.7046469693299,21.1382968944603,62.1714614542949,0.0235178257778988,68.8526783509678 -00:00:42.3304,69.704312549722,21.1893650559484,62.32166192926,0.0236001824372076,68.8810755252413 -00:00:42.3645,69.7039776248244,21.2097422042475,62.381594718375,0.0236181771262017,68.9095237270981 -00:00:42.4083,69.7035474285653,21.2061541499384,62.3710416174659,0.0235790216157989,68.9460337411261 -00:00:42.4521,69.7031171963833,21.2049639733462,62.3675410980769,0.0235449437076314,68.9825005718246 -00:00:42.5000,69.7026475993126,21.223321254076,62.4215331002237,0.0235488844821609,69.0222657286479 -00:00:42.5023,69.7026249917963,21.2179850232993,62.4058383038215,0.0235360762152125,69.0241788849742 -00:00:42.5040,69.7026080678268,21.2049919051201,62.3676232503533,0.0235076840357632,69.0256103289731 -00:00:42.5040,69.7026080678268,21.2049919058575,62.3676232525221,0.0235076840357536,69.0256103289735 -00:00:42.5040,69.7026080678268,21.2049919058498,62.3676232524993,0.0235076840357371,69.0256103289739 -00:00:42.5063,69.7025855174803,21.1658276170133,62.2524341676862,0.0234241897759473,69.027514069704 -00:00:42.5086,69.7025630243285,21.1121445501594,62.0945427945864,0.02331035768367,69.0294085590238 -00:00:42.5124,69.7025261417753,20.9921804781648,61.7417072887199,0.0230569458970588,69.0324987866174 -00:00:42.5162,69.702489512808,20.8478487735057,61.3172022750168,0.0227525905320045,69.0355482227136 -00:00:42.5214,69.7024393807258,20.6257752408599,60.6640448260585,0.0222846634326995,69.039695137691 -00:00:42.5299,69.7023591691208,20.2256862788741,59.4873125849238,0.0214420996938783,69.0462400664406 -00:00:42.5413,69.7022533251935,19.680612953216,57.884155744753,0.020293901145461,69.0546830774678 -00:00:42.5528,69.702150113352,19.2104061158254,56.5011944583101,0.0193021561296802,69.0627028456164 -00:00:42.5643,69.7020489898032,18.8808526903972,55.5319196776389,0.0186050734553716,69.0703861985971 -00:00:42.5757,69.7019491663501,18.7177609795707,55.052238175208,0.0182570890060136,69.0778591690878 -00:00:42.5872,69.701849808182,18.7102005615522,55.0300016516242,0.0182353614218977,69.0852553138577 -00:00:42.5986,69.7017501986737,18.8214000807475,55.3570590610221,0.0184626222208186,69.0926892685349 -00:00:42.6101,69.7016498422337,19.0019505934247,55.8880899806609,0.0188350454125895,69.1002402442601 -00:00:42.6216,69.7015485005677,19.2020287890294,56.4765552618512,0.0192480539680777,69.1079462381668 -00:00:42.6330,69.7014461724103,19.3806437081307,57.0018932592078,0.0196157629441844,69.1158073278541 -00:00:42.6445,69.7013430346761,19.5109686336814,57.3852018637689,0.0198820979441743,69.1237951363104 -00:00:42.6601,69.701201845773,19.5942957558076,57.6302816347283,0.0200475094808542,69.1347863721051 -00:00:42.6796,69.7010248907507,19.5738423702536,57.570124618393,0.0199934347386123,69.1485760870179 -00:00:42.6991,69.7008484140143,19.4753375281378,57.2804044945229,0.0197761564504228,69.1622817374543 -00:00:42.7187,69.7006727875988,19.3701608622039,56.9710613594232,0.0195450796075647,69.1758440207753 -00:00:42.7382,69.700497877203,19.3077301788117,56.7874417023874,0.0194035746145289,69.1892844673286 -00:00:42.7577,69.7003232677077,19.3025831565036,56.7723034014811,0.0193819759321853,69.2026693939282 -00:00:42.7851,69.7000787599594,19.3548450302133,56.9260147947449,0.0194760859910335,69.2214250158955 -00:00:42.8124,69.6998335826319,19.4208952779532,57.1202802292742,0.0195988809423904,69.2402727211756 -00:00:42.8397,69.6995878173495,19.4571507065797,57.2269138428815,0.0196592742147919,69.2591993920166 -00:00:42.8670,69.6993418263661,19.4569769250735,57.2264027208044,0.0196435132133625,69.2781472151658 -00:00:42.9055,69.6989948788634,19.4374952788808,57.1691037614142,0.019581150820234,69.3048341889169 -00:00:42.9441,69.6986480759041,19.4319244603616,57.1527190010636,0.0195479081823836,69.3314686830442 -00:00:42.9826,69.6983011475926,19.4496374877922,57.2048161405653,0.019563279067906,69.3580937142063 -00:00:43.0000,69.6981450140356,19.4626709808261,57.2431499436062,0.0195807524295526,69.3700748915709 -00:00:43.0022,69.698124445379,19.4575111858168,57.2279740759318,0.0195687066415459,69.3716530640974 -00:00:43.0045,69.6981038901161,19.438120068157,57.1709413769325,0.0195269716237226,69.3732290018468 -00:00:43.0068,69.6980833644825,19.4016624502435,57.0637130889514,0.0194496329241069,69.3748001210808 -00:00:43.0091,69.6980628858541,19.3487943773414,56.9082187568863,0.0193380572236139,69.3763636565348 -00:00:43.0125,69.6980320622325,19.2425999234497,56.5958821277933,0.0191145650492129,69.3787061338456 -00:00:43.0208,69.6979591168751,18.8995415333142,55.5868868626887,0.0183940676670856,69.384174773721 -00:00:43.0291,69.6978876289243,18.4752867492271,54.3390786741974,0.0175037970516548,69.3894100145117 -00:00:43.0373,69.6978177772034,18.0306067390053,53.031196291192,0.0165704988854329,69.3943832879226 -00:00:43.0456,69.6977495496054,17.6161222562827,51.8121242831845,0.0156999851882436,69.39909643688 -00:00:43.0539,69.6976827677038,17.2689180708714,50.790935502563,0.0149699825451379,69.4035778518337 -00:00:43.0621,69.6976171369178,17.0116783242912,50.0343480126212,0.0144281826244782,69.4078745096276 -00:00:43.0735,69.6975279911649,16.8175304431845,49.4633248328956,0.0140173220958165,69.41360103057 -00:00:43.0849,69.6974394278507,16.7927873539296,49.3905510409693,0.0139613513259492,69.4192328207059 -00:00:43.0962,69.6973506730639,16.8998641301292,49.7054827356741,0.0141814391952479,69.4248935249749 -00:00:43.1076,69.6972611721427,17.0873104498679,50.2567954407879,0.0145696085411462,69.4306717009348 -00:00:43.1190,69.6971706394803,17.3018745754155,50.887866398281,0.0150142064947155,69.4366128611085 -00:00:43.1304,69.6970790443589,17.4985158520205,51.4662230941779,0.0154209550500084,69.4427217850053 -00:00:43.1417,69.6969865534614,17.6465727037595,51.9016844228221,0.015725817484399,69.4489717584805 -00:00:43.1561,69.6968692649729,17.744111047848,52.1885619054353,0.0159236314689165,69.4569672086089 -00:00:43.1748,69.6967153435862,17.7419662295893,52.182253616439,0.0159111337720967,69.4674896817079 -00:00:43.1936,69.6965617907711,17.6476038664716,51.9047172543283,0.015705980675857,69.4779481270417 -00:00:43.2123,69.696409080291,17.5321537650473,51.5651581324921,0.015456885868056,69.4882670687003 -00:00:43.2311,69.6962571777111,17.4508359902182,51.3259882065242,0.0152792508705878,69.498452076047 -00:00:43.2498,69.6961057198789,17.4268334435583,51.2553924810539,0.0152214800033186,69.5085611107056 -00:00:43.2756,69.6958970829531,17.4650847842974,51.3678964244041,0.0152909247665937,69.5224877919504 -00:00:43.3015,69.6956878778997,17.5334423681182,51.568948141524,0.0154231569700868,69.5364954030461 -00:00:43.3273,69.6954780387337,17.5820694992581,51.7119691154651,0.0155140537249265,69.5505943727114 -00:00:43.3531,69.6952678625113,17.5927794710261,51.7434690324298,0.0155257187599644,69.5647373106874 -00:00:43.3918,69.6949531838718,17.5728857872835,51.6849581978927,0.0154682069598619,69.5858866243249 -00:00:43.4304,69.6946387372532,17.5562639412374,51.6360704154041,0.0154175936459113,69.6069772197557 -00:00:43.4691,69.6943243094705,17.5657227304873,51.6638903837862,0.0154214255939101,69.6280430732023 -00:00:43.5000,69.694073339253,17.5856153931605,51.722398215178,0.0154502179527261,69.644858531909 -00:00:43.5021,69.694056087869,17.5812044079047,51.7094247291315,0.0154401467024725,69.6460143522153 -00:00:43.5042,69.6940388470472,17.5641865340357,51.6593721589284,0.0154037873447449,69.6471684271212 -00:00:43.5068,69.6940179960722,17.5230383346022,51.5383480429475,0.0153169262825757,69.6485608148222 -00:00:43.5093,69.6939972065131,17.4604921840059,51.3543887764879,0.0151854418373234,69.6499433371929 -00:00:43.5125,69.6939712382284,17.3560797084412,51.0472932601213,0.0149663694532483,69.6516585008066 -00:00:43.5198,69.6939131802806,17.0445321346009,50.1309768664731,0.0143135246414148,69.6554252206049 -00:00:43.5287,69.6938443449614,16.5791761207711,48.7622827081502,0.0133388017240548,69.6597399869907 -00:00:43.5375,69.693777442164,16.0860829496833,47.3120086755391,0.0123056564466555,69.6637459006761 -00:00:43.5464,69.6937124579324,15.629047368589,45.9677863782029,0.0113473852668583,69.6674450535677 -00:00:43.5552,69.6936491611223,15.2541951426788,44.8652798314082,0.0105606637635202,69.6708741984193 -00:00:43.5641,69.6935871697185,14.9883085538354,44.0832604524571,0.0100018330251768,69.6740942326981 -00:00:43.5751,69.6935108939328,14.8193801558239,43.5864122230115,0.0096454614128507,69.6779387366691 -00:00:43.5862,69.6934350748424,14.8134537548486,43.5689816319077,0.00963050038390651,69.681709285148 -00:00:43.5972,69.6933589921787,14.9319825978242,43.9175958759535,0.00987612348889985,69.6855209304048 -00:00:43.6083,69.6932821406407,15.1247972637754,44.4846978346335,0.0102770748490803,69.6894543344442 -00:00:43.6193,69.6932042675018,15.3411189572669,45.1209381096086,0.0107269155318915,69.6935497621953 -00:00:43.6303,69.6931253553276,15.5384014280277,45.7011806706698,0.0111366064752836,69.6978098856614 -00:00:43.6414,69.6930455678852,15.6876898850933,46.1402643679216,0.0114456808798364,69.7022084720321 -00:00:43.6550,69.692946308733,15.7872450388657,46.4330736437226,0.0116498850988522,69.7077585218147 -00:00:43.6727,69.6928167840773,15.7925340405205,46.4486295309427,0.0116558165849798,69.7150391262525 -00:00:43.6905,69.692687555136,15.7051268090888,46.1915494384964,0.0114680684062081,69.7222694059201 -00:00:43.7082,69.6925591017988,15.589281371703,45.8508275638324,0.0112209790974034,69.729372888357 -00:00:43.7259,69.6924314545119,15.4983702381813,45.5834418770037,0.0110261007807717,69.7363447770413 -00:00:43.7437,69.6923043251823,15.459292623547,45.4685077163147,0.0109396369261151,69.7432310588531 -00:00:43.7660,69.6921443662609,15.4775446989139,45.5221902909233,0.0109717813548921,69.7518814334516 -00:00:43.7883,69.6919840572843,15.5351782871216,45.6917008444754,0.0110861694858896,69.7605828515124 -00:00:43.8107,69.691823211671,15.5906019011445,45.8547114739544,0.0111958447958501,69.7693650039649 -00:00:43.8330,69.6916619589479,15.6186263067607,45.9371361963551,0.011248214014841,69.7782071938663 -00:00:43.8618,69.691453591476,15.6149994766362,45.92646904893,0.0112326592928922,69.7896412872061 -00:00:43.8906,69.6912453577391,15.5926802232916,45.8608241861516,0.0111780977168083,69.8010459741459 -00:00:43.9195,69.6910373251636,15.5787290419525,45.8197912998602,0.0111410491721538,69.8124105396972 -00:00:43.9558,69.6907752978471,15.585814136318,45.8406298127001,0.0111458790281395,69.8267099723557 -00:00:44.0000,69.6904563200353,15.6093133672949,45.909745197926,0.0111827841787602,69.8441303695468 -00:00:44.0018,69.6904427396298,15.6058818706227,45.8996525606551,0.0111751061518298,69.8448722192859 -00:00:44.0037,69.690429166326,15.5923633354465,45.859892163078,0.0111463793476939,69.8456129042556 -00:00:44.0061,69.6904118586262,15.5567668299592,45.7551965587034,0.0110714383720982,69.8465543909095 -00:00:44.0085,69.6903946014171,15.5012691183575,45.591967995169,0.0109549652295195,69.8474877842279 -00:00:44.0109,69.6903774154027,15.4279731522529,45.3763916242732,0.0108013414012253,69.8484097878449 -00:00:44.0159,69.6903417771471,15.2297973822599,44.7935217125292,0.0103863218711956,69.8502873218774 -00:00:44.0240,69.6902857171358,14.8248345437633,43.6024545404803,0.00953855305881083,69.8531183942306 -00:00:44.0321,69.6902312580266,14.3625727243246,42.242860953896,0.00857062189893027,69.8556937673672 -00:00:44.0401,69.690178500916,13.9002287825174,40.8830258309335,0.00760198983012786,69.857997197715 -00:00:44.0482,69.6901273673367,13.483840105738,39.6583532521706,0.00672904434638361,69.8600410779918 -00:00:44.0563,69.6900776326515,13.1457149518846,38.6638675055429,0.00601964777706214,69.861861172344 -00:00:44.0643,69.6900289762062,12.9041090703145,37.9532619715132,0.00551230334505442,69.8635086455377 -00:00:44.0752,69.6899643370554,12.7367666972846,37.4610785214252,0.0051602256569789,69.8655716600507 -00:00:44.0861,69.6899001382988,12.7324500227512,37.4483824198563,0.00514995086745039,69.8675637772324 -00:00:44.0969,69.6898356721469,12.8525610482986,37.8016501420548,0.0054004872389962,69.869598173994 -00:00:44.1078,69.689770439472,13.0474431130044,38.3748326853069,0.00580755853961952,69.8717546171971 -00:00:44.1187,69.6897041874643,13.2668267399995,39.0200786470573,0.00626568313306834,69.8740734387326 -00:00:44.1296,69.6896368935976,13.4683482041063,39.6127888356069,0.00668610193518229,69.8765581378807 -00:00:44.1404,69.6895687141209,13.6227925848084,40.0670370141425,0.0070077264499273,69.8791836621683 -00:00:44.1513,69.6894999148164,13.715869763856,40.340793423106,0.00720076934688084,69.8819075014792 -00:00:44.1676,69.6893967251819,13.7466264514752,40.4312542690446,0.00726246680865187,69.8860424964656 -00:00:44.1838,69.6892936391822,13.6820379293962,40.241288027636,0.00712467589528342,69.8901594371981 -00:00:44.2001,69.6891911575477,13.5740526918237,39.9236843877167,0.00689613349154729,69.8941784115495 -00:00:44.2163,69.6890894286397,13.4719203766362,39.6232952254006,0.00667990127161569,69.8980757698954 -00:00:44.2326,69.6889883052468,13.4077505915824,39.4345605634775,0.00654317886630121,69.9018750499995 -00:00:44.2488,69.6888874828717,13.3914564443449,39.3866366010143,0.00650669804598754,69.9056248940107 -00:00:44.2709,69.6887500182835,13.4250260069726,39.4853706087428,0.00657371056632026,69.9107474427008 -00:00:44.2931,69.688612119442,13.4845824382335,39.6605365830397,0.00669504401280807,69.9159367522643 -00:00:44.3152,69.6884737132869,13.5321750211838,39.8005147681878,0.00679126766507181,69.9212044386342 -00:00:44.3373,69.6883349885203,13.5498019443743,39.8523586599244,0.00682475474886253,69.9265203436592 -00:00:44.3678,69.6881438777152,13.5370341605609,39.814806354591,0.00679337950068301,69.9338423547104 -00:00:44.3983,69.6879529789949,13.5127731642909,39.7434504832085,0.00673799506729307,69.941125520744 -00:00:44.4288,69.6877622790995,13.5030894508094,39.7149689729689,0.0067131302489208,69.9483719830368 -00:00:44.4659,69.6875303427891,13.5146416628692,39.7489460672623,0.00673168344483962,69.9571822418001 -00:00:44.5000,69.687317074922,13.5327695975267,39.8022635221373,0.00676441999058638,69.9653011776628 -00:00:44.5016,69.6873066563198,13.5301060469598,39.7944295498819,0.00675859808046537,69.9656982005953 -00:00:44.5033,69.6872962427061,13.5194949306367,39.7632203842256,0.00673615948651261,69.9660944130586 -00:00:44.5055,69.6872821732937,13.4888319949026,39.6730352791253,0.00667170698529342,69.9666269882262 -00:00:44.5078,69.6872681454215,13.4397125827463,39.5285664198421,0.00656866194825672,69.967152910681 -00:00:44.5100,69.6872541771857,13.3737891082855,39.3346738478985,0.00643047294838375,69.9676692936791 -00:00:44.5141,69.6872294008823,13.22162818484,38.8871417201178,0.00611164939723604,69.9685597175125 -00:00:44.5214,69.6871852749957,12.8646080493162,37.8370824979887,0.0053636626956884,69.9700364791121 -00:00:44.5287,69.6871424588785,12.4415178642105,36.5926996006191,0.00447698627108827,69.9713038712927 -00:00:44.5360,69.6871010884214,11.9997664102555,35.2934306183987,0.00355070964433715,69.9723400803733 -00:00:44.5433,69.6870611632414,11.5796272100432,34.0577270883625,0.00266921983546435,69.9731450463389 -00:00:44.5506,69.6870225628216,11.2120340137212,32.9765706285916,0.00189752727800468,69.9737379338411 -00:00:44.5579,69.6869850776976,10.9179137150633,32.1115109266568,0.00127976422828058,69.9741521828743 -00:00:44.5668,69.6869404744436,10.6741162365768,31.3944595193434,0.000767470683961834,69.9744821369178 -00:00:44.5758,69.6868966176773,10.5563258221105,31.0480171238545,0.00051985233659522,69.9746924262853 -00:00:44.5847,69.6868530204106,10.5521395515113,31.0357045632686,0.000510962258730514,69.9748610916766 -00:00:44.5936,69.6868092641242,10.6386110118351,31.2900323877503,0.00069255491072414,69.9750552127438 -00:00:44.6025,69.6867650352185,10.7868864570966,31.7261366385193,0.00100390687849576,69.9753250355944 -00:00:44.6114,69.6867201404094,10.9667973931933,32.2552864505685,0.00138154883270459,69.9757014968911 -00:00:44.6203,69.6866745045465,11.1506937897084,32.7961582050247,0.00176736728098329,69.9761965848197 -00:00:44.6292,69.6866281549525,11.3161870263784,33.28290301876,0.00211437143762957,69.976805868141 -00:00:44.6400,69.6865714669777,11.4691308534749,33.7327378043379,0.00243479670626746,69.9776655281281 -00:00:44.6531,69.6865018220792,11.5730132481325,34.0382742592132,0.00265204513338449,69.9788309556669 -00:00:44.6661,69.6864318048498,11.5911371174895,34.091579757322,0.00268934932558565,69.9800556517155 -00:00:44.6792,69.6863618620222,11.5433110229698,33.9509147734405,0.00258832823142367,69.9812681196652 -00:00:44.6923,69.6862923004934,11.4587681246648,33.7022591901907,0.00241031211048337,69.9824192571736 -00:00:44.7053,69.6862232544908,11.3672130675185,33.4329796103486,0.00221761029925384,69.9834875965202 -00:00:44.7184,69.6861547015161,11.2918914530653,33.2114454501921,0.00205899425655741,69.9844767518307 -00:00:44.7315,69.686086510091,11.2459954759598,33.0764572822348,0.00196214870923828,69.9854077801061 -00:00:44.7502,69.6859888323525,11.2333591946025,33.039291748831,0.00193488881632742,69.9867069969329 -00:00:44.7690,69.6858910834722,11.2658189334754,33.1347615690453,0.00200225795136957,69.9880171063203 -00:00:44.7878,69.6857930042268,11.3157623738576,33.2816540407575,0.00210627593331777,69.9893795889501 -00:00:44.8065,69.6856945460471,11.3581425375225,33.4063015809485,0.00219437855696059,69.9908021941273 -00:00:44.8253,69.6855958213237,11.3792712222502,33.4684447713241,0.00223786427664301,69.992266910994 -00:00:44.8520,69.6854551600551,11.3757950828964,33.4582208320482,0.00222936516206539,69.9943664879927 -00:00:44.8787,69.6853146278714,11.3539332160155,33.393921223575,0.00218230869622206,69.9964442785947 -00:00:44.9054,69.6851743050607,11.3367648224138,33.3434259482759,0.0021451193432647,69.9984874478118 -00:00:44.9321,69.6850340866489,11.3350639694437,33.3384234395402,0.00214038976067655,70.0005128078249 -00:00:44.9733,69.6848180016696,11.350222261109,33.3830066503205,0.00217038770284837,70.0036513275118 -00:00:45.0000,69.6846777221361,11.3624117060629,33.4188579590086,0.00219477634566204,70.0057074515183 -00:00:45.0023,69.6846655119111,11.3592077346299,33.4094345136173,0.00218795270401888,70.0058869732801 -00:00:45.0046,69.6846533097523,11.3475490144552,33.3751441601625,0.00216339511218327,70.0060651959254 -00:00:45.0069,69.6846411255408,11.3258339196785,33.3112762343485,0.00211774381690774,70.0062405384541 -00:00:45.0092,69.6846289697075,11.2944942243608,33.2191006598848,0.00205190330457928,70.0064113317817 -00:00:45.0128,69.6846105762892,11.2313977244204,33.0335227188836,0.00191939131524188,70.0066583013294 -00:00:45.0211,69.6845676192585,11.0313909486409,32.4452674960028,0.0014994171804252,70.0071580549325 -00:00:45.0294,69.6845255162653,10.785603021873,31.7223618290381,0.000983259497388828,70.0075209989881 -00:00:45.0378,69.6844843670282,10.5293435545229,30.9686575133026,0.000444974097715759,70.0077311335372 -00:00:45.0461,69.6844441593668,10.2918942842886,30.2702773067311,-5.39379653196496e-05,70.0077903742394 -00:00:45.0545,69.6844047843589,10.0945276808509,29.6897872966202,-0.000468721499413348,70.0077161465032 -00:00:45.0628,69.6843660663035,9.95001964395611,29.2647636586944,-0.000772442510030615,70.00753659895 -00:00:45.0744,69.6843127746124,9.84324012787997,28.9507062584705,-0.000996800001928922,70.0071822122605 -00:00:45.0860,69.6842597941359,9.83592329656151,28.9291861663574,-0.00101197391802113,70.0067779879364 -00:00:45.0977,69.6842066657591,9.90423477778864,29.1301022876136,-0.000868112045532439,70.0063975742609 -00:00:45.1093,69.6841530698521,10.0165330914143,29.4603914453361,-0.000631820469734051,70.0060922276524 -00:00:45.1209,69.6840988536523,10.1408709030574,29.8260908913452,-0.000370319041503433,70.0058864184766 -00:00:45.1325,69.6840440184802,10.2510377606346,30.15011106069,-0.000138708563835298,70.0057798967441 -00:00:45.1441,69.6839886807591,10.3300713678872,30.3825628467269,2.73941052509614e-05,70.0057539615711 -00:00:45.1591,69.6839172349221,10.3766547670527,30.5195728442727,0.000125259709292601,70.0057876418376 -00:00:45.1773,69.6838298357288,10.3641554501018,30.4828101473582,9.89621409717885e-05,70.0058500596957 -00:00:45.1955,69.6837427022943,10.3067184696749,30.313877851985,-2.17424160255319e-05,70.0058698661482 -00:00:45.2137,69.6836560495807,10.2419633018969,30.1234214761675,-0.000157797581016902,70.0058126174807 -00:00:45.2319,69.6835698344767,10.1977304478904,29.9933248467366,-0.000250695202714261,70.0056852437692 -00:00:45.2501,69.6834838552956,10.1848473877559,29.9554334933998,-0.000277684419011662,70.0055200951691 -00:00:45.2772,69.683356216447,10.2068319966251,30.0200941077209,-0.000231349957314293,70.0052866931782 -00:00:45.3042,69.6832282451221,10.2450488692812,30.1324966743564,-0.000150930378328824,70.0051067005738 -00:00:45.3312,69.6830999235333,10.2693903951345,30.2040893974545,-9.97062403718187e-05,70.0049829418224 -00:00:45.3583,69.682971449263,10.2708285420702,30.208319241383,-9.66299848992289e-05,70.0048837208576 -00:00:45.3985,69.6827801804755,10.2550893051212,30.1620273680035,-0.000129616843736189,70.0047158722386 -00:00:45.4388,69.6825890979157,10.244594817958,30.1311612292881,-0.000151565773279743,70.0045183097281 -00:00:45.4790,69.6823980473403,10.2494350737469,30.1453972757261,-0.000141283325243668,70.0043157714652 -00:00:45.5000,69.6822988131447,10.2562161244866,30.1653415426076,-0.000126978279827242,70.0042170764563 -00:00:45.5409,69.6821044239599,10.2649067778948,30.1909022879259,-0.000108620626080433,70.0040456657238 -00:00:45.6007,69.6818200345179,10.266851637497,30.1966224632264,-0.000104408243420223,70.0038152386051 -00:00:45.6885,69.6814028524492,10.2668909107175,30.1967379726986,-0.000104148533022757,70.0034886820996 -00:00:45.7763,69.6809855377269,10.2712649357542,30.2096027522182,-9.47905683135433e-05,70.0031839227138 -00:00:45.8763,69.6805098703622,10.277138563748,30.2268781286706,-8.2277562361104e-05,70.0028728325975 -00:00:45.9763,69.6800340037072,10.2807536938616,30.2375108642988,-7.45287067502692e-05,70.0025942583202 -00:00:46.0000,69.6799212656745,10.2812888772725,30.2390849331543,-7.33703682547261e-05,70.0025323991723 -00:00:46.1000,69.6794452069235,10.2843452078787,30.2480741408196,-6.68129400150335e-05,70.0022852476683 -00:00:46.2000,69.6789690022423,10.2876377285982,30.2577580252888,-5.97720752324932e-05,70.0020619395795 -00:00:46.3000,69.6784926602068,10.2904405191468,30.2660015269024,-5.37726075408648e-05,70.0018610586811 -00:00:46.4000,69.6780161985669,10.2927992495803,30.2729389693538,-4.8716987138897e-05,70.0016797196936 -00:00:46.5000,69.677539629886,10.2949943216832,30.2793950637742,-4.40148101913462e-05,70.0015158726676 -00:00:46.6000,69.6770629631934,10.29702657955,30.2853722927941,-3.96635004370166e-05,70.0013680376824 -00:00:46.7000,69.6765862079057,10.2988371438036,30.2906974817753,-3.5785962625459e-05,70.001234675869 -00:00:46.8000,69.6761093731247,10.3004570271464,30.2954618445481,-3.23162139691359e-05,70.0011143016961 -00:00:46.9000,69.6756324666138,10.30192737412,30.2997863944706,-2.91670969828531e-05,70.0010056468792 -00:00:47.0000,69.6751554952207,10.3032581661498,30.303700488676,-2.63170269592908e-05,70.0009075921605 -00:00:47.1000,69.6746784652782,10.3044562907661,30.307224384606,-2.37509671026383e-05,70.0008191029337 -00:00:47.2000,69.6742013825403,10.3055366169248,30.3104018144846,-2.14371584450262e-05,70.0007392393108 -00:00:47.3000,69.6737242521491,10.3065125928532,30.3132723319212,-1.93468819797628e-05,70.0006671611531 -00:00:47.4000,69.6732470787372,10.3073936434904,30.3158636573246,-1.74599191487953e-05,70.0006021115662 -00:00:47.5000,69.6727698665019,10.3081884644517,30.3182013660344,-1.57576227664006e-05,70.0005434048162 -00:00:47.6000,69.6722926192327,10.3089057390496,30.3203109972046,-1.42214077057109e-05,70.0004904218058 -00:00:47.7000,69.6718153403443,10.309553183389,30.3222152452618,-1.28347547515547e-05,70.0004426046437 -00:00:47.8000,69.6713380329185,10.3101375083771,30.323933848168,-1.15832867448761e-05,70.0003994498423 -00:00:47.9000,69.6708606997381,10.3106648268438,30.3254847848348,-1.04539099615996e-05,70.0003605027409 -00:00:48.0000,69.6703833433146,10.3111407306906,30.3268845020313,-9.4346495475665e-06,70.0003253530252 -00:00:48.1000,69.6699059659142,10.311570243473,30.3281477749205,-8.51474685652539e-06,70.0002936304696 -00:00:48.2000,69.6694285695819,10.3119578771194,30.3292878738806,-7.68453807661298e-06,70.0002650009345 -00:00:48.3000,69.6689511561638,10.3123077124622,30.3303168013595,-6.93528307115961e-06,70.0002391628351 -00:00:48.4000,69.6684737273258,10.3126234386402,30.3312454077653,-6.25908086288778e-06,70.0002158439969 -00:00:48.5000,69.6679962845713,10.3129083818694,30.3320834760866,-5.64880761263826e-06,70.0001947987904 -00:00:48.6000,69.6675188292573,10.3131655423442,30.3328398304243,-5.09803765794613e-06,70.0001758055331 -00:00:48.7000,69.6670413626082,10.3133976288847,30.3335224378961,-4.6009694300734e-06,70.0001586641549 -00:00:48.8000,69.6665638857294,10.3136070865535,30.3341384898632,-4.1523660041513e-06,70.0001431940939 -00:00:48.9000,69.6660863996181,10.3137961217945,30.3346944758663,-3.74750232607762e-06,70.0001292323935 -00:00:49.0000,69.6656089051747,10.3139667257797,30.3351962522932,-3.38211354488623e-06,70.0001166319859 -00:00:49.1000,69.6651314032114,10.3141206955115,30.3356491044457,-3.05235094836325e-06,70.0001052601425 -00:00:49.2000,69.6646538944616,10.3142596528782,30.3360578025828,-2.75474088677673e-06,70.0000949970757 -00:00:49.3000,69.6641763795868,10.3143850616551,30.3364266519267,-2.48614834063441e-06,70.0000857346776 -00:00:49.4000,69.6636988591843,10.3144982428437,30.3367595377757,-2.24374407372964e-06,70.0000773753812 -00:00:49.5000,69.6632213337931,10.3146003886436,30.3370599665988,-2.02497471008384e-06,70.0000698311323 -00:00:49.6000,69.6627438038995,10.3146925750419,30.3373311030644,-1.82753576951363e-06,70.0000630224622 -00:00:49.7000,69.6622662699426,10.3147757730952,30.3375758032211,-1.64934750441672e-06,70.0000568776506 -00:00:49.8000,69.6617887323185,10.3148508591817,30.3377966446519,-1.48853294377445e-06,70.00005133197 -00:00:49.9000,69.6613111913848,10.3149186242349,30.3379959536322,-1.34339811604092e-06,70.0000463270039 -00:00:50.0000,69.6608336474642,10.314979782073,30.3381758296266,-1.21241421084572e-06,70.0000418100317 -00:00:50.0034,69.6608171742906,10.30989502603,30.3232206647941,-1.18979319831232e-05,70.0000408810647 -00:00:50.0069,69.6608007174271,10.29542127891,30.2806508203236,-4.23142483181604e-05,70.0000373374956 -00:00:50.0103,69.6607842918453,10.2707845923579,30.2081899775231,-9.40881977846361e-05,70.0000287792323 -00:00:50.0138,69.660767912351,10.2373177816474,30.109758181316,-0.000164419886600121,70.0000128326933 -00:00:50.0202,69.6607375066304,10.1584608193847,29.8778259393667,-0.000330146404130125,69.9999556798264 -00:00:50.0311,69.6606865776547,10.0001527895824,29.4122140870071,-0.000662875431606337,69.9997618629202 -00:00:50.0420,69.6606364457101,9.83752356690022,28.9338928438242,-0.00100471957513698,69.999440251827 -00:00:50.0529,69.660587060114,9.69884376723897,28.5260110801146,-0.00129621373241936,69.9989989709854 -00:00:50.0639,69.6605382624565,9.60174242565561,28.2404188989871,-0.00150023888509097,69.9984634369417 -00:00:50.0774,69.6604783764403,9.54706617377235,28.0796063934481,-0.00161491245335136,69.9977276476908 -00:00:50.0909,69.6604186399521,9.55589580388014,28.1055758937651,-0.00159593468336776,69.9969680425025 -00:00:50.1044,69.6603587273246,9.60826428305456,28.2596008325134,-0.00148535033658259,69.9962368965966 -00:00:50.1179,69.6602984447341,9.67944448949543,28.4689543808689,-0.00133522390408845,69.9955653094093 -00:00:50.1314,69.660237741349,9.74702129267216,28.6677096843299,-0.00119272985412914,69.9949614196998 -00:00:50.1449,69.660176682177,9.79565483867279,28.8107495255082,-0.00109012967473781,69.9944147742478 -00:00:50.1625,69.6600967723933,9.82150688024824,28.8867849419066,-0.00103539470482194,69.9937486000419 -00:00:50.1860,69.6599900854524,9.80536619438063,28.8393123364136,-0.00106888114101508,69.9928659580143 -00:00:50.2095,69.6598836809383,9.76284537910545,28.714251115016,-0.00115784381907135,69.9919383924032 -00:00:50.2330,69.659777662281,9.72717527424097,28.6093390418852,-0.00123236908765739,69.9909493222145 -00:00:50.2565,69.6596718862823,9.71522828942237,28.5742008512423,-0.00125696471418414,69.9899217468307 -00:00:50.2861,69.6595386264773,9.72759601218216,28.6105765064181,-0.00123026131662519,69.9886287312806 -00:00:50.3157,69.6594051722704,9.74864299860459,28.6724794076606,-0.00118531286845385,69.9873676192377 -00:00:50.3453,69.6592715261664,9.75974296537644,28.7051263687542,-0.0011613095698957,69.9861379935763 -00:00:50.3814,69.6591083217759,9.7560304489715,28.6942072028573,-0.00116833344879999,69.9846459802221 -00:00:50.4299,69.6588893478247,9.74431201257037,28.6597412134422,-0.00119192197529961,69.98262055905 -00:00:50.4784,69.6586705018334,9.7406904100475,28.6490894413162,-0.00119846472511214,69.9805764375404 -00:00:50.5000,69.6585733832327,9.74283887873638,28.6554084668717,-0.00119346467419274,69.9796677041642 -00:00:50.5018,69.6585649366411,9.74075218117462,28.6492711211018,-0.0011978139285007,69.9795885651427 -00:00:50.5037,69.6585564942098,9.73355989232096,28.6281173303558,-0.00121290651840377,69.9795087610997 -00:00:50.5063,69.6585449809952,9.71337852930489,28.5687603803085,-0.00125531618704456,69.9793970687602 -00:00:50.5088,69.6585334984537,9.68171124095106,28.4756212969149,-0.00132189680078477,69.9792804579107 -00:00:50.5114,69.6585220592062,9.6398443223851,28.3524833011327,-0.00140994423725148,69.9791569023858 -00:00:50.5167,69.6584982109386,9.5264993385669,28.0191157016673,-0.00164836856068136,69.978865353488 -00:00:50.5254,69.6584605027356,9.29663020780836,27.3430300229657,-0.00213206107401842,69.9782838450979 -00:00:50.5341,69.6584237596839,9.0390125338962,26.5853309820476,-0.00267434028833689,69.9775473838027 -00:00:50.5427,69.6583880202091,8.78832343379849,25.8480100994073,-0.00320219064386669,69.9766497522629 -00:00:50.5514,69.6583532077932,8.5713940523388,25.2099825068788,-0.00365902180511021,69.9756032095423 -00:00:50.5603,69.6583179683085,8.40098670323926,24.7087844212919,-0.00401782384389912,69.974391875779 -00:00:50.5693,69.6582833027662,8.29398769177582,24.3940814463995,-0.00424291404260439,69.9730883927837 -00:00:50.5806,69.6582399698227,8.24652605559436,24.2544883988069,-0.00434222810340028,69.9713819751945 -00:00:50.5919,69.6581966816523,8.28025784059727,24.3536995311684,-0.0042702246917086,69.9696686834432 -00:00:50.6032,69.6581530889448,8.36894764467592,24.6145518961057,-0.00408229651012594,69.9680047308212 -00:00:50.6145,69.6581089808422,8.48315230840763,24.9504479659048,-0.00384060976441771,69.9664240332752 -00:00:50.6258,69.6580642907534,8.59611282027315,25.2826847655093,-0.00360163097237418,69.9649372787363 -00:00:50.6371,69.6580190730142,8.68788335856341,25.5525981134218,-0.00340741294324007,69.9635356967577 -00:00:50.6484,69.6579734632278,8.74724524537665,25.7271918981666,-0.00328158027569955,69.9621974510337 -00:00:50.6642,69.6579096010829,8.77379584727609,25.8052819037532,-0.00322469391836162,69.9603800798171 -00:00:50.6800,69.6578457235469,8.74879671964123,25.7317550577683,-0.00327649916709323,69.9585656897584 -00:00:50.6957,69.6577821097215,8.69597071903107,25.5763844677384,-0.00338696844053453,69.9567093906141 -00:00:50.7115,69.6577188737758,8.64011247220559,25.412095506487,-0.00350381912111168,69.9547928246988 -00:00:50.7272,69.6576559785459,8.59941067551686,25.2923843397555,-0.00358869131291478,69.9528219791737 -00:00:50.7430,69.657593292735,8.58185277288657,25.2407434496664,-0.00362473734139422,69.9508179854705 -00:00:50.7674,69.6574960979771,8.59139915074098,25.2688210315911,-0.00360306410228968,69.9477066900397 -00:00:50.7919,69.6573987026309,8.62209603564087,25.359105987179,-0.00353678968624011,69.9446289899416 -00:00:50.8163,69.6573010192386,8.64804068625407,25.4354137831002,-0.00348056122798553,69.9415989434342 -00:00:50.8407,69.657203156826,8.65615115996875,25.4592681175551,-0.00346196580616779,69.9385989933866 -00:00:50.8730,69.6570740438907,8.6458538307404,25.4289818551188,-0.0034817262457246,69.9346392598485 -00:00:50.9052,69.6569450931395,8.63021937192362,25.3829981527165,-0.00351273786972074,69.930655667316 -00:00:50.9375,69.6568162843548,8.62362494916009,25.3636027916473,-0.00352466961982902,69.9266514782222 -00:00:50.9787,69.6566518016591,8.62819723722346,25.3770506977161,-0.00351249196839649,69.9215391773568 -00:00:51.0000,69.6565667331179,8.63322242229552,25.3918306538104,-0.00350058299590454,69.9189025487154 -00:00:51.0019,69.6565588199393,8.63102525241495,25.3853683894557,-0.00350509803262445,69.9186574988054 -00:00:51.0039,69.656550911425,8.62320102681817,25.3623559612299,-0.00352148687616398,69.918411706582 -00:00:51.0064,69.6565409617668,8.60344796205866,25.3042587119373,-0.00356301602541405,69.9180993401744 -00:00:51.0089,69.656531040977,8.57311036532801,25.2150304862588,-0.00362688207606495,69.9177823402551 -00:00:51.0119,69.656519110225,8.52419419920819,25.0711594094359,-0.00372992634565014,69.9173904054368 -00:00:51.0181,69.6564947957829,8.39197449927558,24.6822779390458,-0.00400860555253445,69.9165398533468 -00:00:51.0266,69.6564622808105,8.16703019824161,24.0206770536518,-0.00448296711000304,69.9152641186919 -00:00:51.0351,69.6564306785491,7.92102942404223,23.2971453648301,-0.00500195418766787,69.9138415281077 -00:00:51.0436,69.6564000102468,7.68496926389291,22.6028507761556,-0.00550010369647611,69.9122686149744 -00:00:51.0521,69.6563701950543,7.48248110438566,22.0072973658402,-0.00592742379357733,69.910558372822 -00:00:51.0606,69.6563410755628,7.32871027639644,21.5550302246954,-0.00625181023740225,69.9087361576514 -00:00:51.0691,69.656312450232,7.23046889598271,21.2660849881844,-0.00645877500423492,69.9068344663483 -00:00:51.0798,69.6562765038112,7.18317058628995,21.1269723126175,-0.00655773288729648,69.9043671206853 -00:00:51.0906,69.6562406181847,7.20878570356529,21.2023108928391,-0.0065024107968451,69.9018903899846 -00:00:51.1013,69.656204490032,7.28557517937599,21.4281622922823,-0.0063388291462718,69.8994532263436 -00:00:51.1121,69.6561679262443,7.38870145679052,21.7314748729133,-0.00611957614998799,69.8970867840977 -00:00:51.1229,69.6561308513891,7.49490858942916,22.0438487924387,-0.00589387042135757,69.8948032167127 -00:00:51.1336,69.656093292347,7.58596715710104,22.3116681091207,-0.00570026491475414,69.8925981652204 -00:00:51.1444,69.6560553494236,7.65049197512574,22.5014469856639,-0.00556281551879224,69.890455428718 -00:00:51.1587,69.6560046966877,7.6893512063317,22.6157388421521,-0.00547934167759408,69.8876669105215 -00:00:51.1729,69.6559539356148,7.6818907720562,22.5937963884006,-0.00549382298526185,69.8848965239136 -00:00:51.1872,69.6559033133132,7.64359340448053,22.4811570720016,-0.00557351108519914,69.8821044056934 -00:00:51.2015,69.6558529701398,7.59342752590532,22.3336103703098,-0.00567829409608257,69.8792679156023 -00:00:51.2158,69.6558029325819,7.54804864553107,22.2001430750914,-0.00577294573332914,69.8763827841893 -00:00:51.2300,69.6557531387789,7.51807150688906,22.111975020262,-0.00583501003805959,69.8734589971928 -00:00:51.2493,69.6556861013464,7.50643149008327,22.0777396767155,-0.0058578001339353,69.8694854788605 -00:00:51.2730,69.655603590666,7.52348219131927,22.1278887979978,-0.00581946636081468,69.8646033702609 -00:00:51.2967,69.6555208550409,7.55245653220506,22.2131074476619,-0.0057559167377316,69.8597594518844 -00:00:51.3204,69.6554378732258,7.57273606307656,22.2727531266958,-0.00571077909515501,69.8549571415729 -00:00:51.3441,69.6553547676152,7.57625854101919,22.2831133559388,-0.00570110643315086,69.8501766749136 -00:00:51.3793,69.6552315840366,7.56338101035984,22.2452382657642,-0.00572506360619805,69.8430768609738 -00:00:51.4144,69.6551085855087,7.54901350557329,22.202980898745,-0.00575216844346377,69.8359512685575 -00:00:51.4496,69.6549857082215,7.54571510301732,22.1932797147568,-0.00575584091461511,69.8288102066765 -00:00:51.4945,69.6548286728644,7.55187737373029,22.2114040403832,-0.00573857118064008,69.8196960269386 -00:00:51.5000,69.654809714435,7.55320592805314,22.2153115530975,-0.00573524904253324,69.8185972068438 -00:00:51.5017,69.6548037378988,7.55180071404964,22.2111785707342,-0.00573806349283376,69.8182508600975 -00:00:51.5034,69.6547977641078,7.54648137317373,22.195533450511,-0.00574916462005385,69.8179040797005 -00:00:51.5058,69.654789420091,7.53061727196405,22.148874329306,-0.00578252659711028,69.817417032705 -00:00:51.5082,69.6547810989457,7.50517494270673,22.0740439491374,-0.00583616859537044,69.8169263108201 -00:00:51.5105,69.6547728105747,7.47108729631797,21.9737861656411,-0.00590811760589056,69.8164303145141 -00:00:51.5150,69.6547574281557,7.38877366801602,21.7316872588707,-0.00608199423976057,69.8154825456631 -00:00:51.5229,69.6547307899035,7.20275173251997,21.1845639191764,-0.00647522793488901,69.8137299196612 -00:00:51.5308,69.6547048795753,6.98641973663375,20.5482933430404,-0.00693279705668037,69.8118598759861 -00:00:51.5387,69.6546797557847,6.7662437689919,19.9007169676232,-0.00739866048071335,69.809862906066 -00:00:51.5466,69.6546553958439,6.56398638008978,19.3058422943817,-0.00782667000838138,69.8077426426513 -00:00:51.5545,69.6546317086578,6.39543600944311,18.8101059101268,-0.0081832887539863,69.8055137910054 -00:00:51.5624,69.6546085561307,6.27013903311821,18.4415853915241,-0.00844819565987204,69.8031986766213 -00:00:51.5728,69.6545785715085,6.17598689178083,18.1646673287671,-0.00864671673020714,69.800066456966 -00:00:51.5832,69.6545488628909,6.15645738301399,18.1072275971,-0.00868683458373929,69.796890038736 -00:00:51.5936,69.65451911275,6.19699280543283,18.2264494277436,-0.00859943834867866,69.7937208380635 -00:00:51.6039,69.6544890822666,6.27733015915969,18.4627357622344,-0.00842756762387645,69.7905975242965 -00:00:51.6143,69.6544586315567,6.37575439631672,18.7522188126962,-0.00821734613317441,69.7875427380866 -00:00:51.6247,69.65442771859,6.47278310335407,19.0375973628061,-0.00801013731780325,69.7845632692178 -00:00:51.6351,69.6543963829191,6.55368083119327,19.2755318564508,-0.00783720571186549,69.781652698215 -00:00:51.6455,69.6543647205112,6.60964835148407,19.4401422102473,-0.00771720498002299,69.7787954771849 -00:00:51.6599,69.6543207628807,6.64235561835492,19.5363400539851,-0.00764610592368381,69.7749001258139 -00:00:51.6742,69.6542767282395,6.6313878943756,19.5040820422812,-0.00766768375321391,69.7710180996638 -00:00:51.6885,69.6542328468516,6.59242958987037,19.3894987937364,-0.00774865598140613,69.7671121252034 -00:00:51.7029,69.6541892432127,6.54387196953289,19.246682263332,-0.00784999876235876,69.7631620501802 -00:00:51.7172,69.6541459324532,6.50136224375194,19.1216536580939,-0.00793850290876577,69.7591654269518 -00:00:51.7316,69.6541028475997,6.47443975094138,19.0424698557099,-0.00799391540208045,69.7551331021091 -00:00:51.7507,69.6540455557927,6.46569513481164,19.0167503965048,-0.00801015144037317,69.7497347139734 -00:00:51.7698,69.6539882485731,6.4796899001104,19.0579114709129,-0.00797810730755846,69.7443403958001 -00:00:51.7889,69.6539307915924,6.50270909424674,19.1256149830786,-0.00792690749710899,69.7389719048262 -00:00:51.8080,69.6538731583706,6.52208620860673,19.1826064959021,-0.00788344934469763,69.7336335252463 -00:00:51.8313,69.6538029310072,6.5314265254596,19.2100780160576,-0.0078608119753335,69.7271675152785 -00:00:51.8626,69.6537082659731,6.52450502327073,19.1897206566786,-0.00787173679060472,69.7184576046264 -00:00:51.8940,69.6536137312344,6.51021274410408,19.1476845414826,-0.00789831543283163,69.7097307624924 -00:00:51.9253,69.6535193374824,6.50206430413723,19.1237185415801,-0.00791184093048141,69.700985260074 -00:00:51.9566,69.6534249919395,6.50312760910895,19.126845909144,-0.00790579563109842,69.6922361344424 -00:00:52.0000,69.6532944683141,6.50906526795134,19.1443096116216,-0.00788794828858054,69.6801542715802 -00:00:52.0017,69.6532892454513,6.50759542579176,19.1399865464463,-0.00789086282209181,69.6796711877271 -00:00:52.0034,69.6532840252455,6.5022169317543,19.1241674463362,-0.00790208395039064,69.6791876859249 -00:00:52.0057,69.6532771065267,6.48738445454185,19.0805425133584,-0.0079333284396907,69.6785440544464 -00:00:52.0080,69.6532702081561,6.46396497033573,19.011661677458,-0.00798282365656252,69.6778971466696 -00:00:52.0103,69.6532633387289,6.43277449537349,18.9199249863926,-0.00804883731450619,69.6772455689891 -00:00:52.0147,69.6532505166001,6.35708289496405,18.6973026322472,-0.00820920088980382,69.6760012384136 -00:00:52.0223,69.6532284524418,6.18637465524666,18.1952195742549,-0.00857120439211291,69.6737455740311 -00:00:52.0299,69.6532070346735,5.98651456559135,17.607395781151,-0.0089953139438879,69.6713853085715 -00:00:52.0375,69.6531863215361,5.78080200995009,17.0023588527944,-0.00943201188328438,69.6689109614368 -00:00:52.0451,69.6531663018511,5.58869861969964,16.4373488814695,-0.0098398803028661,69.6663243137007 -00:00:52.0527,69.6531469047735,5.42473156441168,15.9550928365049,-0.0101879528988125,69.6636368388656 -00:00:52.0603,69.6531280169097,5.29820695305273,15.5829616266257,-0.0104563537563872,69.6608669330891 -00:00:52.0698,69.653104788295,5.19826981711882,15.2890288738789,-0.0106678723433476,69.6573093097584 -00:00:52.0794,69.6530818628699,5.16152616751646,15.1809593162249,-0.0107447534844009,69.6537028863874 -00:00:52.0889,69.6530589857589,5.17889639562613,15.2320482224298,-0.0107063159726973,69.6500890891133 -00:00:52.0985,69.6530359504525,5.23621249301279,15.4006249794494,-0.010582758034264,69.6465014859737 -00:00:52.1080,69.6530126167188,5.31707751361857,15.6384632753487,-0.0104090403493434,69.6429628678464 -00:00:52.1176,69.6529889149721,5.4055279726555,15.8986116842809,-0.0102191929902989,69.639484537093 -00:00:52.1271,69.6529648400959,5.48807721340093,16.1414035688263,-0.0100419532061474,69.636067314752 -00:00:52.1367,69.6529404379966,5.5549788755992,16.3381731635271,-0.00989807630169458,69.6327037303621 -00:00:52.1487,69.6529094223272,5.60878141132226,16.4964159156537,-0.00978177514584327,69.6285276024965 -00:00:52.1648,69.6528675680095,5.62904709927859,16.5560208802311,-0.00973634708659192,69.6229702185487 -00:00:52.1809,69.6528257235143,5.60346350422257,16.4807750124193,-0.00978859089606685,69.6174125223188 -00:00:52.1970,69.6527841376545,5.55448751883109,16.336727996562,-0.00989067360143364,69.6118140780816 -00:00:52.2131,69.6527429021587,5.50485760210714,16.1907576532563,-0.00999415311371394,69.6061599771981 -00:00:52.2292,69.6527019695569,5.47052901530434,16.0897912214834,-0.0100650243357661,69.6004579369691 -00:00:52.2453,69.6526612108945,5.45766964831398,16.0519695538646,-0.0100901336472599,69.5947289238186 -00:00:52.2678,69.6526043309666,5.46774223250143,16.0815948014748,-0.0100654486544072,69.5867341011612 -00:00:52.2903,69.6525472882201,5.49276768748653,16.1551990808427,-0.0100088897958994,69.5787683051422 -00:00:52.3127,69.6524900260739,5.51399265749632,16.2176254632245,-0.00996044013302519,69.5708407323239 -00:00:52.3352,69.6524326231255,5.52158153893686,16.2399457027555,-0.00994106998632876,69.5629385944419 -00:00:52.3633,69.6523608012108,5.51454213959844,16.2192415870542,-0.00995209460883283,69.5530554570197 -00:00:52.3915,69.6522890946991,5.50109755866572,16.179698701958,-0.00997678042003522,69.5431575052236 -00:00:52.4196,69.6522175163513,5.49237673337143,16.1540492157983,-0.00999139008183286,69.5332426642302 -00:00:52.4477,69.6521459949947,5.49180716152423,16.152374004483,-0.00998861013712328,69.5233225167308 -00:00:52.5000,69.6520131071577,5.49734494935195,16.168661615741,-0.00996937921518569,69.5049194233809 -00:00:52.5016,69.6520089697087,5.49619219673673,16.1652711668727,-0.00997160880941779,69.5043467756552 -00:00:52.5032,69.6520048341827,5.49177914559471,16.1522916046903,-0.00998079686175156,69.5037738280755 -00:00:52.5054,69.6519992443655,5.47908500328763,16.1149558920224,-0.0100075780086663,69.5029967103239 -00:00:52.5076,69.6519936713566,5.45875020363884,16.0551476577613,-0.0100506681915079,69.5022168801931 -00:00:52.5098,69.6519881225142,5.43142817242489,15.9747887424262,-0.0101086744449698,69.5014331395301 -00:00:52.5136,69.6519785701128,5.37029514503264,15.7949857206842,-0.0102386301543381,69.5000596931514 -00:00:52.5208,69.6519610995556,5.22247777308031,15.3602287443539,-0.0105532150338255,69.4974398186774 -00:00:52.5279,69.651944160584,5.04580007272802,14.8405884492,-0.0109295265486407,69.4947336061451 -00:00:52.5350,69.6519278134777,4.85947298959869,14.2925676164667,-0.0113265715107474,69.4919312088758 -00:00:52.5421,69.6519120645613,4.68002461046428,13.7647782660714,-0.0117090386646683,69.4890315678792 -00:00:52.5493,69.6518968716972,4.52040435563598,13.2953069283411,-0.0120492223253567,69.4860415267424 -00:00:52.5569,69.651881175983,4.38217645035043,12.8887542657366,-0.012343663466692,69.4827652580806 -00:00:52.5645,69.6518658975845,4.28279664454243,12.5964607192424,-0.0125550542085478,69.4794212223373 -00:00:52.5743,69.6518466000255,4.21367632673158,12.3931656668576,-0.0127013718217097,69.475055988278 -00:00:52.5841,69.6518274821372,4.20470520538108,12.3667800158267,-0.0127189725701572,69.4706619790419 -00:00:52.5939,69.6518083033738,4.24358844207678,12.4811424766964,-0.0126341544144139,69.4662784622035 -00:00:52.6037,69.6517888839953,4.31421118069881,12.68885641382,-0.0124814178860084,69.4619347794235 -00:00:52.6135,69.651769117959,4.39961431697716,12.9400421087564,-0.0122970736816048,69.4576482369916 -00:00:52.6233,69.6517489715087,4.48454305943864,13.1898325277607,-0.0121137737533929,69.4534243370795 -00:00:52.6331,69.65172847175,4.55720745505093,13.4035513383851,-0.0119567418313115,69.4492586465209 -00:00:52.6429,69.651707689252,4.61016292620957,13.5593027241458,-0.0118418958284531,69.4451396401007 -00:00:52.6555,69.6516805762526,4.64527704830165,13.6625795538284,-0.011764779119883,69.4398570604481 -00:00:52.6682,69.6516533552522,4.64628832101518,13.6655538853388,-0.0117606296390698,69.4345929968143 -00:00:52.6809,69.6516261955957,4.62212433671378,13.5944833432758,-0.0118103483801764,69.4293198082494 -00:00:52.6935,69.6515992091462,4.58467795868998,13.4843469373235,-0.0118884938745163,69.4240192345609 -00:00:52.7062,69.6515724407961,4.54555581940882,13.3692818217907,-0.0119702308612706,69.4186839459378 -00:00:52.7189,69.6515458764599,4.5136381596211,13.2754063518268,-0.0120365506455905,69.4133162408406 -00:00:52.7342,69.6515139187018,4.4914014947318,13.21000439627,-0.0120817258175372,69.4067917711563 -00:00:52.7545,69.6514717378619,4.48822781275326,13.2006700375096,-0.0120852992459284,69.3981418327008 -00:00:52.7748,69.6514295049823,4.50464326621233,13.2489507829774,-0.0120469257135034,69.3895027034895 -00:00:52.7950,69.6513871098357,4.52607291053367,13.3119791486284,-0.0119978160247668,69.3808923876679 -00:00:52.8153,69.6513445552445,4.54089808005746,13.3555825884043,-0.0119628539803432,69.3723104216334 -00:00:52.8356,69.6513019171027,4.54445818024691,13.3660534713144,-0.0119520229891737,69.3637444034863 -00:00:52.8661,69.6512378571125,4.53562667505812,13.3400784560533,-0.0119661256093522,69.3508636413365 -00:00:52.8966,69.6511739302646,4.52276538869889,13.302251143232,-0.0119888653096748,69.3379663050991 -00:00:52.9271,69.6511101234856,4.51632264195037,13.2833018880893,-0.0119978520000754,69.325054531708 -00:00:52.9576,69.6510463529607,4.51755843325276,13.2869365683905,-0.0119903814469625,69.3121420234806 -00:00:53.0000,69.6509576262869,4.52206351245424,13.300186801336,-0.0119740214774573,69.2942019487091 -00:00:53.0014,69.65095465467,4.52124528753376,13.2977802574522,-0.0119755518176886,69.2936015125675 -00:00:53.0028,69.6509516842605,4.51812899992205,13.2886147056531,-0.0119820102524742,69.2930008901443 -00:00:53.0049,69.6509472623672,4.5077606320197,13.2581195059403,-0.0120039106354024,69.2921042661315 -00:00:53.0070,69.6509428540173,4.49052695958647,13.2074322340778,-0.0120405346924913,69.2912054515393 -00:00:53.0091,69.6509384655896,4.46691006881919,13.1379707906447,-0.0120908500222029,69.2903034027555 -00:00:53.0123,69.6509319568839,4.42145330277851,13.0042744199368,-0.0121878451136481,69.2889466190973 -00:00:53.0188,69.6509187717182,4.29875832158196,12.6434068281822,-0.0124500084750347,69.2861010268481 -00:00:53.0254,69.6509059976596,4.14831115783152,12.2009151700927,-0.0127717878707268,69.2831883903525 -00:00:53.0319,69.6508936930959,3.98500327280902,11.720597861203,-0.0131212654992165,69.2801991334585 -00:00:53.0385,69.6508818780329,3.82206661787805,11.2413724055237,-0.0134700513344482,69.2771299585664 -00:00:53.0450,69.6508705361581,3.6704065061482,10.795313253377,-0.0137947180950912,69.2739835153557 -00:00:53.0515,69.6508596217536,3.53833059947357,10.406854704334,-0.0140773932420223,69.2707672749131 -00:00:53.0581,69.6508490678047,3.43147018885088,10.0925593789732,-0.0143059409362416,69.2674922053017 -00:00:53.0665,69.6508359052402,3.33581157885566,9.81121052604605,-0.0145101363264646,69.2632247770461 -00:00:53.0748,69.6508230239291,3.28662746126493,9.66655135666155,-0.0146144382545904,69.2589116546877 -00:00:53.0832,69.6508102539689,3.27979578295927,9.64645818517434,-0.0146276753715835,69.2545806998877 -00:00:53.0916,69.6507974466709,3.30763141357191,9.7283276869762,-0.0145663623510856,69.2502563011396 -00:00:53.1000,69.6507844867797,3.36030557222587,9.88325168301725,-0.0144516389694213,69.2459573641123 -00:00:53.1084,69.650771298151,3.42730144310495,10.0802983620734,-0.0143061291295332,69.2416963773298 -00:00:53.1168,69.6507578440493,3.49866816627154,10.2902004890339,-0.0141512363472147,69.2374793629896 -00:00:53.1252,69.6507441232099,3.56596443154157,10.4881306810046,-0.014005111698006,69.2333065241631 -00:00:53.1336,69.6507301629349,3.62285329026807,10.6554508537296,-0.0138813760742104,69.2291733788831 -00:00:53.1441,69.6507123414855,3.67362715667389,10.8047857549232,-0.0137704289723984,69.2240164601598 -00:00:53.1577,69.6506891753748,3.70305038331786,10.8913246568172,-0.0137048767087283,69.2174238379968 -00:00:53.1713,69.6506659315202,3.69731482066009,10.8744553548826,-0.0137149162708277,69.2108450658477 -00:00:53.1849,69.650642790411,3.66764897723008,10.7872028742061,-0.0137764138407892,69.2042505395973 -00:00:53.1985,69.6506198586288,3.62783870467018,10.6701138372652,-0.0138597344403334,69.1976227743451 -00:00:53.2121,69.6505971628163,3.5903078528463,10.5597289789597,-0.0139381609344153,69.190957396416 -00:00:53.2256,69.6505746652947,3.5634710975697,10.4807973457932,-0.0139935886550799,69.1842605857592 -00:00:53.2392,69.6505522911788,3.55078490187748,10.443485005522,-0.0140185743844287,69.1775446299287 -00:00:53.2588,69.6505200752339,3.55355531337054,10.4516332746192,-0.0140092819187572,69.1678590548787 -00:00:53.2784,69.6504877780523,3.57083175661094,10.5024463429733,-0.0139687715067579,69.1581891193621 -00:00:53.2979,69.6504553290403,3.58987163743794,10.5584459924645,-0.0139244655609466,69.148546411868 -00:00:53.3175,69.6504227482121,3.6016450147955,10.5930735729279,-0.013895801049227,69.1389276453541 -00:00:53.3371,69.6503901077589,3.60328161116849,10.597887091672,-0.0138889591788162,69.1293209647468 -00:00:53.3654,69.650343022891,3.59446422376782,10.5719535993171,-0.0139031538378173,69.1154445846625 -00:00:53.3936,69.6502960562421,3.58289894159478,10.5379380635141,-0.0139232702706425,69.1015535669641 -00:00:53.4219,69.6502491934044,3.57682531425985,10.5200744537055,-0.0139315613830279,69.0876502772522 -00:00:53.4502,69.6502023664432,3.57736106535416,10.5216501922181,-0.0139256150614306,69.073745877318 -00:00:53.4894,69.6501373100527,3.58116763620219,10.53284598883,-0.0139107605824297,69.0544517186812 -00:00:53.5000,69.6501198724389,3.58222427744667,10.5359537571961,-0.0139067018221128,69.0492856331788 -00:00:53.5011,69.6501179077107,3.58169235644645,10.534389283666,-0.0139076478019933,69.048703703301 -00:00:53.5023,69.6501159436847,3.5797224043245,10.5285953068368,-0.0139116936585889,69.0481216663355 -00:00:53.5040,69.6501132266159,3.57366038879296,10.5107658493911,-0.0139244834223659,69.0473150055482 -00:00:53.5056,69.6501105157193,3.56353947139162,10.4809984452695,-0.0139460233025177,69.0465073459009 -00:00:53.5072,69.6501078139742,3.54949052120174,10.4396780035345,-0.013976031787547,69.0456981974274 -00:00:53.5096,69.650103908083,3.52278308794383,10.3611267292466,-0.0140332055338959,69.0445178431224 -00:00:53.5157,69.6500940825648,3.42786228613959,10.0819479004106,-0.0142368334958059,69.0414652094085 -00:00:53.5219,69.6500845670687,3.30321715004035,9.71534455894221,-0.0145046127161076,69.0383618002969 -00:00:53.5280,69.6500754245763,3.16123351527382,9.29774563315828,-0.0148098674796313,69.0351972406866 -00:00:53.5341,69.650066688836,3.0132506654283,8.86250195714206,-0.0151281562867737,69.0319659597957 -00:00:53.5402,69.6500583640409,2.8690272384221,8.43831540712383,-0.0154384225871407,69.0286672487882 -00:00:53.5463,69.6500504290425,2.73650707342603,8.0485502159589,-0.0157235045818702,69.0253045721008 -00:00:53.5524,69.65004284278,2.62169573553346,7.71086981039254,-0.0159704096138612,69.0218846773727 -00:00:53.5585,69.6500355499165,2.52863061168454,7.4371488578957,-0.0161703877668845,69.0184166697726 -00:00:53.5664,69.6500264262033,2.44367098919513,7.18726761527979,-0.0163525699217302,69.0138732062571 -00:00:53.5744,69.6500175408192,2.39850283369805,7.05442009911192,-0.0164487795072593,69.0092908496255 -00:00:53.5823,69.650008756084,2.38980285784655,7.02883193484278,-0.0164661692384329,69.0046922948428 -00:00:53.5902,69.6499999501668,2.41148562306829,7.09260477373026,-0.0164178810779593,69.0000976292361 -00:00:53.5981,69.6499910263199,2.45572750930851,7.22272796855445,-0.0163208271451564,68.9955228060178 -00:00:53.6060,69.6499819174313,2.51403295887932,7.39421458493918,-0.0161933774148562,68.9909788910758 -00:00:53.6139,69.6499725867902,2.57817352563064,7.58286331067835,-0.0160533235311819,68.9864719360143 -00:00:53.6218,69.6499630258126,2.64092219932166,7.76741823329899,-0.0159162885778988,68.9820033537086 -00:00:53.6298,69.6499532495302,2.6965518223691,7.93103477167383,-0.0157946497388966,68.9775706631837 -00:00:53.6377,69.6499432906905,2.74109607606772,8.06204728255211,-0.0156969759768165,68.9731684632174 -00:00:53.6483,69.6499297479216,2.77991611485546,8.17622386722194,-0.0156112015310916,68.9673037155444 -00:00:53.6616,69.6499126037824,2.79603257904352,8.22362523248094,-0.0155740217775362,68.9599771780804 -00:00:53.6725,69.649898482099,2.78614577873974,8.19454640805806,-0.0155934651072257,68.9539573670714 -00:00:53.6835,69.6498844417437,2.76227671145951,8.12434326899856,-0.0156431375989839,68.9479248890022 -00:00:53.6944,69.6498705356786,2.73176525594386,8.03460369395253,-0.0157071772141302,68.941871008258 -00:00:53.7053,69.6498567811052,2.70132049571203,7.94506028150596,-0.0157710801079315,68.9357928854839 -00:00:53.7163,69.649843165707,2.67601834823703,7.87064220069715,-0.0158238681901227,68.9296925500569 -00:00:53.7296,69.6498266352433,2.65624497693877,7.8124852262905,-0.0158642699096528,68.922203561219 -00:00:53.7471,69.6498052394412,2.64911178609064,7.79150525320778,-0.0158766199825916,68.9124487761689 -00:00:53.7645,69.6497838416169,2.65781881849672,7.81711417204917,-0.0158546997129519,68.902696220873 -00:00:53.7819,69.6497623522073,2.67380356039656,7.86412811881342,-0.0158170304855643,68.8929606771568 -00:00:53.7993,69.6497407450265,2.68872976094392,7.90802870865858,-0.015781650444382,68.8832464675989 -00:00:53.8167,69.6497190466408,2.69730695532639,7.93325575095998,-0.0157600104596246,68.8735492067365 -00:00:53.8378,69.6496927386922,2.69779933759399,7.93470393409997,-0.0157552232429211,68.8618198091469 -00:00:53.8588,69.6496664575186,2.69097088741669,7.91462025710792,-0.0157662870568328,68.8500887580487 -00:00:53.8799,69.6496402462143,2.68222985468024,7.88891133729482,-0.0157814955320221,68.8383489347097 -00:00:53.9010,69.6496141039929,2.67593902047701,7.87040888375592,-0.0157914006735927,68.8266004674534 -00:00:53.9281,69.6495804945724,2.67362732711645,7.86360978563663,-0.0157916194706812,68.8114693310553 -00:00:53.9680,69.649531090883,2.67599920672128,7.8705859021214,-0.0157794432778487,68.7892365230171 -00:00:54.0000,69.6494915029881,2.67809488290919,7.87674965561526,-0.0157692677745558,68.7714410512264 -00:00:54.0010,69.6494902311287,2.67772917151681,7.87567403387297,-0.0157698796961271,68.7708696606783 -00:00:54.0020,69.6494889596449,2.67638404182633,7.87171777007744,-0.0157726148539933,68.770298214565 -00:00:54.0035,69.6494870995444,2.67184904701811,7.85837955005326,-0.0157821812412687,68.769460917876 -00:00:54.0050,69.6494852437527,2.66405601958402,7.83545888112946,-0.0157988109982428,68.7686229226787 -00:00:54.0065,69.649483394486,2.65304052573209,7.80306036980025,-0.0158224274648569,68.7677838624557 -00:00:54.0085,69.6494810136115,2.63437697376784,7.74816756990542,-0.0158625482401611,68.7666952585662 -00:00:54.0124,69.6494762487936,2.58357210843282,7.59874149539064,-0.015972009590309,68.7644760211214 -00:00:54.0185,69.6494691385762,2.4788949375891,7.29086746349736,-0.0161979437723366,68.7610240109012 -00:00:54.0246,69.6494623522057,2.35155749290123,6.91634556735657,-0.0164730898652802,68.7575186486822 -00:00:54.0306,69.6494559363049,2.21277887066594,6.50817314901747,-0.0167731401261445,68.7539522047195 -00:00:54.0367,69.6494499098085,2.07258634421842,6.0958421888777,-0.0170763489710834,68.750321527393 -00:00:54.0428,69.6494442656561,1.93942568730344,5.70419319795131,-0.0173643799374033,68.7466277674962 -00:00:54.0488,69.6494389752739,1.81998499698945,5.35289704996898,-0.0176226938820427,68.7428756406304 -00:00:54.0549,69.6494339937423,1.71911693713473,5.05622628569038,-0.017840725729617,68.739072574449 -00:00:54.0610,69.6494292650069,1.63985199075236,4.82309409044813,-0.018011863747104,68.7352278471834 -00:00:54.0671,69.6494247268636,1.58350385357339,4.65736427521585,-0.0181332274732814,68.7313517619092 -00:00:54.0731,69.6494203155142,1.54985505848353,4.55839723083392,-0.0182052687586247,68.7274548909058 -00:00:54.0792,69.649415969514,1.53740270593359,4.52177266451055,-0.0182312401047062,68.7235474199226 -00:00:54.0853,69.6494116329826,1.54364106804238,4.54012078835993,-0.018216580550211,68.7196386144351 -00:00:54.0914,69.6494072580047,1.56535920107147,4.60399765021021,-0.018168267515243,68.7157364203319 -00:00:54.0974,69.6494028062039,1.5989341233451,4.70274742160323,-0.0180941775750499,68.7118472018985 -00:00:54.1035,69.6493982495255,1.6406033895899,4.82530408702911,-0.0180024919735401,68.7079756115236 -00:00:54.1096,69.6493935703019,1.68670450938058,4.96089561582524,-0.0179011746240424,68.7041245787289 -00:00:54.1175,69.6493873211267,1.74710589586905,5.13854675255602,-0.0177684522596592,68.699172632726 -00:00:54.1253,69.6493808613699,1.80340657246474,5.30413697783748,-0.017644649936068,68.694255999972 -00:00:54.1332,69.6493742137605,1.85111610926691,5.44445914490268,-0.0175395266757418,68.6893709102139 -00:00:54.1427,69.6493659657764,1.89330220089476,5.5685358849846,-0.0174461124036967,68.6834859830805 -00:00:54.1546,69.6493554829644,1.92034777559489,5.64808169292614,-0.0173851828121886,68.6761699095522 -00:00:54.1645,69.6493467163979,1.92262436741011,5.6547775512062,-0.0173784609912474,68.6701143080672 -00:00:54.1743,69.6493379703291,1.91036442708213,5.61871890318273,-0.017403343456115,68.6640559241595 -00:00:54.1842,69.649329300056,1.88849450903597,5.55439561481168,-0.0174491249723319,68.6579855857719 -00:00:54.1940,69.6493207376322,1.86221377049757,5.47709932499286,-0.0175045045881777,68.6518979745564 -00:00:54.2039,69.6493122928827,1.83617828850768,5.40052437796377,-0.0175593581747359,68.6457914584801 -00:00:54.2138,69.6493039570568,1.81395998204836,5.33517641778928,-0.0176059154900941,68.6396674872055 -00:00:54.2267,69.6492931838818,1.79425700085795,5.27722647311163,-0.017646462559859,68.631643972047 -00:00:54.2435,69.649279226424,1.78508403454385,5.25024716042309,-0.0176633958697627,68.6211532786176 -00:00:54.2603,69.6492652850923,1.79087518590798,5.26727995855287,-0.0176477667273729,68.6106617084645 -00:00:54.2772,69.6492512741233,1.80459952040697,5.30764564825581,-0.0176148695299354,68.6001834987977 -00:00:54.2940,69.6492371602288,1.81882363604166,5.34948128247547,-0.0175808816912223,68.5897241771704 -00:00:54.3108,69.6492229576397,1.82827774239823,5.37728747764184,-0.0175572758106289,68.5792813814134 -00:00:54.3276,69.6492087083955,1.83097317772473,5.38521522860215,-0.0175483845417687,68.56884813043 -00:00:54.3513,69.649188668941,1.82614264949255,5.37100779262515,-0.0175546523488522,68.5541656749383 -00:00:54.3750,69.6491686982644,1.81714879544516,5.34455528072105,-0.0175699929489307,68.5394753470286 -00:00:54.3987,69.6491488093323,1.80993962009115,5.32335182379749,-0.0175814507340678,68.5247749893227 -00:00:54.4224,69.6491289723759,1.80720648720161,5.31531319765179,-0.0175831585430713,68.5100695468783 -00:00:54.4564,69.6491005107536,1.80854823631453,5.31925951857215,-0.0175741384863191,68.4889679578095 -00:00:54.4904,69.6490720297842,1.81083395363712,5.32598221657977,-0.0175630617112434,68.4678769033827 -00:00:54.5000,69.649063991745,1.81116896448205,5.32696754259425,-0.0175606130831889,68.4619301058824 -00:00:54.5008,69.649063318309,1.81097085594782,5.32638487043476,-0.0175609012618204,68.4614319761343 -00:00:54.5016,69.6490626450458,1.81026342073689,5.32430417863792,-0.0175623003272068,68.4609338217212 -00:00:54.5029,69.6490615180919,1.80729267029035,5.31556667732457,-0.0175685386958477,68.4600988700192 -00:00:54.5042,69.6490603937845,1.80186221742276,5.29959475712578,-0.0175801421468806,68.459263489461 -00:00:54.5056,69.6490592736409,1.79390870902769,5.27620208537557,-0.0175972491589895,68.4584274275605 -00:00:54.5069,69.649058159189,1.78354577992054,5.24572288211924,-0.0176196122354767,68.4575904300881 -00:00:54.5092,69.6490562805103,1.7609229313274,5.17918509213942,-0.0176685503895688,68.4561631200168 -00:00:54.5148,69.649051837962,1.68456821511972,4.95461239741095,-0.0178341286517574,68.4526651330247 -00:00:54.5204,69.6490476233943,1.58411774523777,4.65916983893462,-0.0180523217813179,68.4491293970886 -00:00:54.5260,69.6490436851692,1.46837472813748,4.31874920040434,-0.0183039483853507,68.445547852376 -00:00:54.5315,69.6490400526742,1.34552148029281,3.95741611850827,-0.0185711676612182,68.4419155935992 -00:00:54.5371,69.6490367356037,1.22277355432923,3.59639280685068,-0.018838232683301,68.4382309923303 -00:00:54.5427,69.6490337262461,1.106234267859,3.25363019958528,-0.0190918097251784,68.4344953191255 -00:00:54.5483,69.6490310025637,1.00080354128399,2.94353982730585,-0.019321181249655,68.4307122331301 -00:00:54.5539,69.6490285314448,0.910128912093313,2.67684974145092,-0.0195183579050276,68.4268872422043 -00:00:54.5597,69.6490261539043,0.833171883094652,2.45050553851368,-0.0196855364399333,68.4228176616119 -00:00:54.5656,69.6490239579241,0.776600826244664,2.28412007719019,-0.019808173923726,68.4187180211833 -00:00:54.5704,69.6490222602826,0.745612700276608,2.19297853022532,-0.0198750764760848,68.4153471225031 -00:00:54.5752,69.6490206170258,0.727889268837542,2.14085079069865,-0.0199129763747388,68.4119672978247 -00:00:54.5800,69.6490189996645,0.722446296597404,2.12484204881589,-0.0199240203777401,68.4085832992216 -00:00:54.5849,69.6490173824442,0.727959825902398,2.14105831147764,-0.0199111006368563,68.4051994233731 -00:00:54.5897,69.6490157427881,0.742862720038406,2.18489035305414,-0.0198776431307835,68.4018194371565 -00:00:54.5945,69.6490140617374,0.765432345261181,2.25127160370935,-0.0198274153267309,68.398446504009 -00:00:54.5993,69.6490123242242,0.793872915178928,2.33492033876155,-0.0197643454993932,68.3950831381558 -00:00:54.6041,69.6490105191612,0.82639097819739,2.43056170058056,-0.0196923571221745,68.3917311895768 -00:00:54.6102,69.6490081124332,0.87076133853391,2.56106276039385,-0.0195942101750981,68.3874826614197 -00:00:54.6164,69.6490055797541,0.915762613779802,2.69341945229353,-0.0194946848482302,68.3832553853668 -00:00:54.6242,69.6490021542858,0.969755370214766,2.85222167710225,-0.0193751857334948,68.3778659719177 -00:00:54.6321,69.6489985479929,1.01601988966061,2.98829379311943,-0.0192725907118057,68.3725071180312 -00:00:54.6418,69.648993872492,1.05843357416109,3.11303992400321,-0.0191780765297918,68.3658851772039 -00:00:54.6512,69.648989206931,1.08212091291194,3.18270856738807,-0.0191245755497872,68.3595059524065 -00:00:54.6607,69.648984473245,1.08930531190509,3.20383915266202,-0.019107169266997,68.3531386574527 -00:00:54.6701,69.6489797371825,1.08257236523873,3.18403636834919,-0.0191202069704217,68.3467723218689 -00:00:54.6795,69.6489750507528,1.06577184840842,3.13462308355417,-0.0191552728852087,68.3403982660948 -00:00:54.6890,69.6489704484086,1.04323631936307,3.06834211577372,-0.0192028928670403,68.3340107388368 -00:00:54.6984,69.6489659463524,1.01910608557266,2.99737083991958,-0.0192540100469458,68.3276070335921 -00:00:54.7078,69.6489615443872,0.996828558282595,2.93184870083116,-0.0193010800348767,68.3211871809507 -00:00:54.7201,69.6489559515913,0.97469987245696,2.86676433075576,-0.0193473281584223,68.3128309555017 -00:00:54.7354,69.6489490733212,0.960235441706089,2.82422188737085,-0.0193762526653132,68.3023472124316 -00:00:54.7472,69.6489438170393,0.958836219870563,2.82010652903107,-0.0193772013758352,68.2942572685196 -00:00:54.7590,69.6489385518539,0.964032203224894,2.83538883301439,-0.019363707355977,68.2861696953596 -00:00:54.7709,69.6489332492039,0.973051884989172,2.86191730879168,-0.0193418376030052,68.2780892644601 -00:00:54.7827,69.6489278958173,0.983067951888981,2.89137632908524,-0.0193177834548352,68.2700181938121 -00:00:54.7945,69.6489224921944,0.991780699956228,2.91700205869479,-0.0192965824847665,68.261956400464 -00:00:54.8124,69.648914267219,0.999470224130181,2.93961830626524,-0.0192765423987074,68.2497941085883 -00:00:54.8317,69.6489053254008,1.00025570764673,2.94192855190214,-0.0192713651374233,68.236634123798 -00:00:54.8510,69.64889639963,0.995352565736225,2.92750754628301,-0.0192786567816946,68.2234738144973 -00:00:54.8704,69.6488875233178,0.988385743503064,2.90701689265607,-0.0192904760786334,68.2103075929586 -00:00:54.8897,69.648878701222,0.98259582208427,2.88998771201256,-0.0192997192858043,68.1971346614055 -00:00:54.9136,69.6488678178399,0.979306356322214,2.88031281271239,-0.019302657900807,68.1808078648435 -00:00:54.9412,69.6488553085654,0.979703078172692,2.88147964168439,-0.0192968680613101,68.1620155864192 -00:00:54.9688,69.6488427892598,0.981572869800412,2.88697902882474,-0.0192878474223453,68.1432297771856 -00:00:54.9964,69.6488302578493,0.982193500567157,2.88880441343282,-0.019281569372056,68.1244507820925 -00:00:55.0000,69.6488286290016,0.982126388328378,2.88860702449523,-0.0192810781872944,68.1220114268937 -00:00:55.0005,69.6488283757511,0.982036194137998,2.8883417474647,-0.0192811769137712,68.1216321449992 -00:00:55.0011,69.6488281225519,0.98175624118684,2.88751835643188,-0.0192816922217858,68.1212528564404 -00:00:55.0021,69.6488276595202,0.980395915825973,2.88351739948816,-0.0192844968766382,68.1205585446873 -00:00:55.0029,69.6488272855031,0.978376924400213,2.87757918941239,-0.019288782253263,68.1199966438445 -00:00:55.0037,69.648826912432,0.975440852525314,2.86894368389798,-0.0192950810375257,68.1194345888659 -00:00:55.0046,69.6488265406573,0.971582845893781,2.85759660556994,-0.0193034039545432,68.1188723210626 -00:00:55.0058,69.6488259826519,0.964080193937266,2.83552998216843,-0.0193196537860767,68.1180228110396 -00:00:55.0080,69.6488250331965,0.946750951805001,2.78456162295589,-0.0193573183634608,68.1165559969631 -00:00:55.0113,69.6488235777083,0.909375428416854,2.67463361299075,-0.0194387805842394,68.1142322700078 -00:00:55.0154,69.6488219117325,0.850504471775987,2.50148374051761,-0.0195673324476924,68.1114105596934 -00:00:55.0195,69.6488203679025,0.779803973289398,2.29354109790999,-0.0197218881541854,68.108568491285 -00:00:55.0236,69.6488189653336,0.700694800004526,2.06086705883684,-0.0198949451221814,68.1057028582429 -00:00:55.0277,69.6488177171165,0.616377922981825,1.81287624406419,-0.0200794796989612,68.102811462125 -00:00:55.0318,69.6488166304678,0.529791138094527,1.55820922968979,-0.0202690418102038,68.0998930880025 -00:00:55.0359,69.6488157072529,0.443585493618767,1.30466321652578,-0.0204578068270511,68.0969474174385 -00:00:55.0400,69.648814944587,0.360100970131725,1.05912050038743,-0.020640629453168,68.0939749284735 -00:00:55.0454,69.6488141711778,0.257951933179126,0.758682156409194,-0.0208643119870888,68.0900239052468 -00:00:55.0524,69.648813513996,0.143343719122998,0.421599173891172,-0.0211151813246957,68.0848298526559 -00:00:55.0582,69.6488132279592,0.0669127325395724,0.196802154528154,-0.0212823332204763,68.0804959055792 -00:00:55.0640,69.6488131218068,0.00905134964244907,0.0266216165954384,-0.0214086551423687,68.0761319718533 -00:00:55.0686,69.6488131349026,-0.0231755268839737,-0.0681633143646284,-0.0214809953276314,68.0726705208522 -00:00:55.0731,69.6488132039085,-0.0437689646868519,-0.128732249078976,-0.0215273992150946,68.0691995230347 -00:00:55.0777,69.6488133049024,-0.053399431829509,-0.157057152439732,-0.0215486793616946,68.0657230749727 -00:00:55.0823,69.6488134158284,-0.0530285951913777,-0.155966456445228,-0.0215470358403187,68.062245015653 -00:00:55.0868,69.6488135168586,-0.0438428593676995,-0.128949586375587,-0.0215251856343231,68.0587688120276 -00:00:55.0914,69.6488135908075,-0.0271928204937492,-0.0799788838051446,-0.0214862234972376,68.0552974710473 -00:00:55.0960,69.648813623433,-0.00453192657354325,-0.013329195804539,-0.021433480919088,68.0518334841949 -00:00:55.1006,69.6488136035973,0.0226462384900261,0.0666065837941944,-0.0213723342765971,68.0483786104913 -00:00:55.1051,69.6488135232907,0.0528683748418595,0.155495220123116,-0.0213049998838516,68.0449340796123 -00:00:55.1097,69.6488133775357,0.0847337222760844,0.249216830223778,-0.0212340474724772,68.0415006809163 -00:00:55.1153,69.648813109145,0.123760915995221,0.364002694103591,-0.0211471544213831,68.0373382713739 -00:00:55.1208,69.6488127425615,0.161334267792921,0.47451255233212,-0.0210634619174249,68.0331925422939 -00:00:55.1283,69.6488121062247,0.206603227174506,0.607656550513253,-0.0209624882524246,68.0276304594988 -00:00:55.1386,69.6488110169428,0.254493017728148,0.748508875671023,-0.0208552552947017,68.0200442070612 -00:00:55.1461,69.6488100935371,0.277793459834057,0.817039587747227,-0.020802637148257,68.0145114060091 -00:00:55.1536,69.6488091071907,0.290524688990193,0.85448437938292,-0.0207732867788117,68.0089895261814 -00:00:55.1612,69.6488080933053,0.293452040446634,0.863094236607748,-0.0207655215046781,68.0034726221325 -00:00:55.1687,69.6488070831629,0.288082121789881,0.847300358205531,-0.0207760271424945,67.9979554396465 -00:00:55.1762,69.6488061021171,0.276368319276048,0.812847997870729,-0.0208005055278476,67.9924337194288 -00:00:55.1837,69.6488051684889,0.260455570955496,0.766045796927929,-0.0208342357141472,67.986904382864 -00:00:55.1912,69.6488042932533,0.242460516810978,0.713119167091111,-0.0208725576094757,67.9813655848279 -00:00:55.1988,69.6488034804236,0.224294283915413,0.659689070339449,-0.0209112621413891,67.9758166496422 -00:00:55.2063,69.6488027279698,0.207534816347042,0.610396518667772,-0.0209468726828874,67.9702579170459 -00:00:55.2174,69.6488017092555,0.187878954388783,0.552585159967009,-0.020988246493622,67.9620399922417 -00:00:55.2293,69.6488007065042,0.174869178840687,0.514321114237315,-0.0210148431146043,67.953223023811 -00:00:55.2389,69.6487999305366,0.170647558717484,0.501904584463188,-0.0210224600685113,67.946042677252 -00:00:55.2486,69.6487991626767,0.171470920863184,0.504326237832895,-0.0210189569410265,67.938861544325 -00:00:55.2583,69.648798383239,0.176062798409216,0.517831760027104,-0.0210071453767239,67.931682935251 -00:00:55.2680,69.6487975788196,0.182903530604962,0.537951560602829,-0.0209903743302585,67.9245091044955 -00:00:55.2776,69.6487967426476,0.190502538371802,0.560301583446477,-0.0209719297081676,67.9173411913212 -00:00:55.2873,69.6487958740339,0.197596923208743,0.581167421202184,-0.0209545962742346,67.9101793121398 -00:00:55.3010,69.6487945961217,0.205016969022522,0.60299108536036,-0.0209358344491931,67.9000213615736 -00:00:55.3182,69.6487929535499,0.208952217392919,0.614565345273292,-0.0209241541750187,67.8873156799404 -00:00:55.3322,69.6487916112752,0.208023141739027,0.611832769820668,-0.0209237738685315,67.8770226303925 -00:00:55.3461,69.6487902824041,0.204501715529205,0.601475633909426,-0.0209291150051717,67.8667285198024 -00:00:55.3600,69.6487889789446,0.19985269735899,0.587802051055854,-0.0209369469033986,67.8564313260854 -00:00:55.3739,69.6487877039966,0.195421132612655,0.574768037096043,-0.0209443014671705,67.8461305262437 -00:00:55.3918,69.6487861002408,0.191466926561661,0.563138019299003,-0.0209499152519505,67.832897350511 -00:00:55.4159,69.6487839767386,0.189565522681674,0.5575456549461,-0.0209499306808703,67.8151203346297 -00:00:55.4399,69.6487818611919,0.190292467214188,0.559683727100553,-0.0209441435657746,67.7973455282821 -00:00:55.4639,69.6487797369733,0.191593857056354,0.563511344283395,-0.0209370884638564,67.7795757312525 -00:00:55.4879,69.6487776057046,0.191881278856326,0.564356702518606,-0.0209322751016525,67.7618106686467 -00:00:55.5000,69.6487765411334,0.1914417164654,0.563063871957059,-0.0209311604931741,67.7529386523255 -00:00:55.5004,69.6487765038768,0.191385764715889,0.562899307987908,-0.02093121111628,67.7526279182593 -00:00:55.5008,69.6487764666446,0.191244275717503,0.562483163875008,-0.0209314508253226,67.7523171811549 -00:00:55.5014,69.6487764103385,0.190743940816562,0.561011590636947,-0.0209324461616815,67.7518463822113 -00:00:55.5021,69.6487763542469,0.18981723256498,0.558285978132295,-0.020934384046101,67.7513755495952 -00:00:55.5027,69.648776298502,0.18840005836869,0.554117818731441,-0.020937406182189,67.7509046610024 -00:00:55.5033,69.6487762432512,0.186465305979172,0.548427370526976,-0.020941572530957,67.7504336915633 -00:00:55.5041,69.6487761744311,0.183277100674498,0.539050296101464,-0.020948480790449,67.749838674605 -00:00:55.5053,69.6487760816414,0.177536614602121,0.522166513535649,-0.0209609781233392,67.7490158704983 -00:00:55.5068,69.6487759592256,0.167180499128562,0.491707350378124,-0.0209836062219044,67.7478778909795 -00:00:55.5089,69.6487758075679,0.149041330399436,0.438356854115987,-0.0210233488959943,67.7463367558568 -00:00:55.5117,69.6487756347577,0.117738683434617,0.346290245395933,-0.0210920721172287,67.7442443677266 -00:00:55.5153,69.6487754798949,0.0672749061970295,0.197867371167734,-0.0212030286465059,67.7415133575564 -00:00:55.5190,69.6487754176836,0.00782226324063622,0.0230066565901065,-0.0213338825820359,67.7387667990354 -00:00:55.5227,69.6487754612727,-0.0582963261054497,-0.171459782663087,-0.021484922811856,67.7360020513092 -00:00:55.5263,69.6487756201781,-0.128873199583379,-0.379038822304055,-0.0216468716818804,67.7332172166375 -00:00:55.5300,69.6487759002735,-0.201843331787012,-0.593656858197093,-0.0218143656540811,67.7304111806226 -00:00:55.5336,69.6487763040376,-0.27529925827166,-0.809703700799001,-0.0219830118722313,67.7275834865679 -00:00:55.5384,69.6487770239089,-0.369819663812316,-1.08770489356564,-0.0222000483974386,67.7238193215595 -00:00:55.5446,69.6487782425501,-0.482275131138586,-1.41845626805466,-0.022458264436732,67.7189369885496 -00:00:55.5508,69.6487797613669,-0.580242802078084,-1.70659647670025,-0.0226831478333119,67.7140020857639 -00:00:55.5570,69.6487815338151,-0.65983632676334,-1.94069507871571,-0.0228657091946795,67.7090227878467 -00:00:55.5632,69.648783504552,-0.718843181251127,-2.11424465073861,-0.023000817055048,67.7040088226062 -00:00:55.5694,69.6487856141447,-0.75667779126529,-2.22552291548615,-0.0230870957412623,67.6989706430811 -00:00:55.5745,69.6487874100094,-0.772359015582599,-2.27164416347823,-0.0231224449511672,67.6948253962968 -00:00:55.5796,69.648789228009,-0.775305848206329,-2.28031131825391,-0.0231284069275805,67.6906764034223 -00:00:55.5846,69.6487910399148,-0.767018326398285,-2.2559362541126,-0.0231084391035877,67.6865286340946 -00:00:55.5897,69.6487928215388,-0.749288925032271,-2.20379095597727,-0.0230666762270233,67.6823863472376 -00:00:55.5948,69.6487945530631,-0.724086467196001,-2.12966607998824,-0.0230076617703406,67.6782530326121 -00:00:55.5999,69.648796219329,-0.693450452820392,-2.03956015535409,-0.0229361033266109,67.674131359661 -00:00:55.6050,69.648797809914,-0.659395463917896,-1.93939842328793,-0.0228566513761866,67.6700231639249 -00:00:55.6100,69.6487993189882,-0.623828121932298,-1.83478859391852,-0.0227737072033284,67.665929472194 -00:00:55.6151,69.6488007449867,-0.588478845653747,-1.73082013427573,-0.0226912651708157,67.6618505602502 -00:00:55.6214,69.6488024040241,-0.547269147429791,-1.60961513949939,-0.0225950894621575,67.656806907915 -00:00:55.6299,69.6488044482749,-0.500373304792825,-1.47168619056713,-0.0224854322991534,67.6501070926175 -00:00:55.6403,69.6488067861415,-0.45882654519706,-1.34948983881488,-0.0223877670628933,67.6417930260612 -00:00:55.6473,69.6488082373757,-0.442600831185677,-1.30176715054611,-0.0223491429020947,67.6363077016855 -00:00:55.6542,69.6488096508984,-0.435502767984136,-1.28089049407099,-0.0223315873123071,67.6308293046983 -00:00:55.6612,69.6488110545962,-0.436600916138883,-1.28412034158495,-0.0223329530212451,67.6253529245643 -00:00:55.6681,69.6488124723048,-0.444457091471681,-1.30722673962259,-0.0223499230624727,67.6198743634173 -00:00:55.6751,69.648813922868,-0.457350345607409,-1.34514807531591,-0.0223785271196994,67.6143903017341 -00:00:55.6820,69.6488154195271,-0.473459597760154,-1.39252822870634,-0.0224145625821301,67.6088984062017 -00:00:55.6889,69.6488169698156,-0.491019445701979,-1.44417484029994,-0.0224539539841534,67.6033973483764 -00:00:55.6959,69.6488185759204,-0.508446460035533,-1.49543076481039,-0.022493044617536,67.5978867416181 -00:00:55.7049,69.6488207316942,-0.528579560410055,-1.55464576591193,-0.0225380516728636,67.5907422266043 -00:00:55.7184,69.6488240933577,-0.550276476650614,-1.61846022544298,-0.0225859303494392,67.5799993984117 -00:00:55.7291,69.648826854346,-0.559283769870758,-1.64495226432576,-0.022604948696912,67.571410651415 -00:00:55.7399,69.6488296423906,-0.560939039124811,-1.64982070330827,-0.0226069779642089,67.5628178179653 -00:00:55.7507,69.6488324248971,-0.55672147788014,-1.63741611141218,-0.022595432169667,67.554226644286 -00:00:55.7614,69.6488351782227,-0.548792962818211,-1.61409694946533,-0.0225753056764479,67.5456412996461 -00:00:55.7722,69.6488378895747,-0.539449382672701,-1.5866158313903,-0.0225519047608637,67.5370640408975 -00:00:55.7829,69.6488405566727,-0.530691689361198,-1.56085790988588,-0.0225298556848214,67.5284952712078 -00:00:55.7937,69.6488431856906,-0.523952347800736,-1.54103631706099,-0.0225124716584225,67.5199339024576 -00:00:55.8124,69.6488477034465,-0.518745649674495,-1.52572249904263,-0.0224973054872955,67.5050770705333 -00:00:55.8260,69.6488509643115,-0.519750433960224,-1.52867774694184,-0.0224973658950976,67.4943069705262 -00:00:55.8395,69.6488542393955,-0.523615056073064,-1.54004428256784,-0.0225040449870939,67.4835354442997 -00:00:55.8531,69.648857541708,-0.528739860244438,-1.55511723601305,-0.0225136432637972,67.4727601945672 -00:00:55.8666,69.6488608746203,-0.53362858069244,-1.569495825566,-0.0225226985099357,67.4619806248042 -00:00:55.8837,69.6488650998062,-0.537885227330724,-1.58201537450213,-0.0225297130087819,67.4484236636229 -00:00:55.9063,69.6488707432868,-0.539811618404245,-1.58768123060072,-0.0225304035244572,67.43041096063 -00:00:55.9289,69.6488763926528,-0.538753201140576,-1.58456823864875,-0.0225241836422324,67.4124002324139 -00:00:55.9516,69.6488820293162,-0.536888273371569,-1.5790831569752,-0.0225160960102894,67.3943947616295 -00:00:55.9742,69.6488876536365,-0.536029055626952,-1.57655604596162,-0.0225103394560086,67.3763944836061 -00:00:56.0000,69.6488940481754,-0.536999035432961,-1.579408927744,-0.0225083103480612,67.3559375230319 -00:00:56.0004,69.6488941671456,-0.537080507587911,-1.57964855172915,-0.0225084197188304,67.3555571011054 -00:00:56.0009,69.6488942861627,-0.537276854592039,-1.58022604291776,-0.0225087954266671,67.355176672224 -00:00:56.0017,69.6488944717166,-0.537976999147046,-1.58228529160896,-0.0225102948678917,67.3545840826888 -00:00:56.0024,69.6488946576201,-0.539258564181013,-1.58605460053239,-0.0225131423902844,67.3539914345732 -00:00:56.0031,69.6488948440804,-0.541195183979961,-1.59175054111753,-0.022517508760287,67.3533986912559 -00:00:56.0039,69.6488950313253,-0.543809589966014,-1.59943997048828,-0.0225234467325938,67.3528058124016 -00:00:56.0049,69.6488952785902,-0.548253470558397,-1.6125102075247,-0.0225335881398641,67.3520277292082 -00:00:56.0063,69.6488956550474,-0.557004836931813,-1.63824952038769,-0.0225536359143414,67.3508567043476 -00:00:56.0086,69.6488962462057,-0.574867097189713,-1.69078557996974,-0.0225946814944603,67.3490593940957 -00:00:56.0119,69.6488971490976,-0.609415746638745,-1.79239925481984,-0.0226742560197283,67.3464305113346 -00:00:56.0163,69.6488984525196,-0.668520324406925,-1.96623624825566,-0.0228106136798949,67.3428987079536 -00:00:56.0207,69.6488998871664,-0.739059140682518,-2.17370335494858,-0.0229735236108483,67.3393437975719 -00:00:56.0251,69.648901472262,-0.817251276102853,-2.40368022383192,-0.0231542269604145,67.3357623732574 -00:00:56.0295,69.6489032199896,-0.899564876246849,-2.64577904778485,-0.0233445372085605,67.332152272538 -00:00:56.0350,69.6489056764017,-1.00448084250161,-2.95435541912237,-0.0235871751644621,67.327533459953 -00:00:56.0406,69.6489083970694,-1.10533178205523,-3.25097582957421,-0.0238204477025562,67.3228680253085 -00:00:56.0462,69.6489113657428,-1.19752304751824,-3.52212661034777,-0.0240336760563113,67.3181588337258 -00:00:56.0518,69.6489145558223,-1.27750662215381,-3.75737241809944,-0.0242186034179885,67.3134105861248 -00:00:56.0589,69.6489189038018,-1.35823555851612,-3.99481046622388,-0.024405069260714,67.3072828424006 -00:00:56.0675,69.6489244485153,-1.42110436022368,-4.17971870654025,-0.0245498462400442,67.2998162943079 -00:00:56.0741,69.6489288045793,-1.44360535449541,-4.24589810145709,-0.0246011363320709,67.2941087764965 -00:00:56.0807,69.6489331994962,-1.4459979060423,-4.25293501777147,-0.0246056851789998,67.2883946049347 -00:00:56.0873,69.6489375763854,-1.43130517303128,-4.20972109715082,-0.0245705109199468,67.2826838662285 -00:00:56.0938,69.6489418891887,-1.40328870217078,-4.12731971226699,-0.0245043542942783,67.2769847296078 -00:00:56.1004,69.648946103708,-1.36604587796706,-4.01778199402075,-0.024416740584875,67.2713032615121 -00:00:56.1070,69.6489501980667,-1.32366713793235,-3.8931386409775,-0.0243171806366101,67.2656433431912 -00:00:56.1136,69.6489541623047,-1.27995208460313,-3.76456495471509,-0.0242145094249324,67.2600067422448 -00:00:56.1202,69.6489579971991,-1.23819062922306,-3.64173714477371,-0.0241163765878919,67.2543933218318 -00:00:56.1288,69.6489628596522,-1.19087057169855,-3.50256050499574,-0.0240049891173047,67.2470495749224 -00:00:56.1374,69.6489675571717,-1.15510272210136,-3.39736094735695,-0.0239204554433292,67.2397354984959 -00:00:56.1485,69.6489733923476,-1.12885300015099,-3.32015588279704,-0.0238576702921636,67.230438446516 -00:00:56.1571,69.6489778813271,-1.12309065681253,-3.30320781415451,-0.0238429060188369,67.2231914256785 -00:00:56.1657,69.648982368447,-1.12846178473105,-3.31900524920898,-0.0238540355637134,67.2159451484885 -00:00:56.1743,69.6489868926137,-1.14219117239574,-3.35938580116394,-0.0238846108077465,67.2086927114343 -00:00:56.1829,69.6489914806169,-1.1610751315715,-3.41492685756324,-0.0239271848641059,67.201429359125 -00:00:56.1915,69.6489961467241,-1.18195229591965,-3.47633028211662,-0.023974405991836,67.1941525570873 -00:00:56.2001,69.6490008935535,-1.20206097560685,-3.53547345766719,-0.0240198487959655,67.1868618377997 -00:00:56.2121,69.6490076199157,-1.22469926277902,-3.60205665523242,-0.0240706604553042,67.1766893224741 -00:00:56.2267,69.6490159672762,-1.24089483538392,-3.64969069230565,-0.0241060715402285,67.1642365637966 -00:00:56.2413,69.6490243809838,-1.24430663748215,-3.65972540435927,-0.0241117257849475,67.1517732078436 -00:00:56.2560,69.6490327868065,-1.23780666685834,-3.64060784370101,-0.0240942982244518,67.1393124377735 -00:00:56.2706,69.6490411349013,-1.22621213790312,-3.60650628795037,-0.0240649998146144,67.1268631091242 -00:00:56.2853,69.6490494069947,-1.21442697006832,-3.57184402961271,-0.0240352512119467,67.1144284710046 -00:00:56.2999,69.649057612678,-1.20602146793571,-3.54712196451679,-0.0240133718147436,67.1020068212842 -00:00:56.3186,69.6490680471981,-1.20240382583489,-3.53648184069084,-0.024002009953921,67.086147244376 -00:00:56.3373,69.6490784782448,-1.20551258513765,-3.54562525040485,-0.0240063277775847,67.0702902190614 -00:00:56.3560,69.6490889480018,-1.21212474756821,-3.56507278696533,-0.024018819270991,67.0544282421739 -00:00:56.3747,69.6490994714286,-1.21866247452704,-3.58430139566775,-0.0240311444256341,67.0385586494897 -00:00:56.3934,69.6491100390211,-1.22274323972952,-3.59630364626328,-0.0240377445937985,67.022683128208 -00:00:56.4208,69.6491255116071,-1.22374848427443,-3.59926024786596,-0.0240358267915405,66.9994808982944 -00:00:56.4481,69.6491409803577,-1.22158989889061,-3.59291146732532,-0.0240265281700464,66.9762834666551 -00:00:56.4754,69.6491564285969,-1.2197202052953,-3.58741236851557,-0.0240179042111998,66.9530937998826 -00:00:56.5000,69.6491702846355,-1.21990092605637,-3.58794390016578,-0.0240145076123675,66.9322873743758 -00:00:56.5008,69.6491707462341,-1.22011747268139,-3.5885808020041,-0.0240148863694746,66.9315942453104 -00:00:56.5016,69.6491712080201,-1.2207667992313,-3.59049058597442,-0.0240162762591987,66.9309010865328 -00:00:56.5027,69.6491718281973,-1.22266890478204,-3.59608501406482,-0.0240205497461667,66.9299710891663 -00:00:56.5038,69.6491724496898,-1.22590189419911,-3.60559380646797,-0.0240279328849709,66.9290408639845 -00:00:56.5049,69.649173073171,-1.23051148176301,-3.61915141695003,-0.024038532656817,66.9281102909701 -00:00:56.5062,69.6491738587444,-1.23816175656214,-3.64165222518277,-0.0240561943366418,66.9269429747626 -00:00:56.5085,69.6491751562497,-1.25477555080176,-3.69051632588754,-0.0240946662885927,66.9250318480455 -00:00:56.5131,69.6491778727165,-1.30193598572175,-3.8292234874169,-0.0242041665522036,66.9211213349736 -00:00:56.5194,69.6491818287673,-1.38967936130767,-4.0872922391402,-0.0244082822196701,66.9156796396849 -00:00:56.5258,69.6491860651003,-1.4947731416021,-4.39639159294734,-0.0246530289226153,66.9101881782895 -00:00:56.5321,69.6491906174496,-1.60736142767894,-4.7275336108204,-0.0249153875453877,66.9046405607299 -00:00:56.5384,69.6491954959107,-1.71876716597945,-5.0551975469984,-0.0251750720286954,66.8990349669081 -00:00:56.5448,69.649200687287,-1.82183972698029,-5.35835213817732,-0.0254153451965903,66.8933737326583 -00:00:56.5511,69.649206159691,-1.91112098503592,-5.62094407363506,-0.0256234139053856,66.8876625328624 -00:00:56.5574,69.6492118676996,-1.98290797331452,-5.83208227445446,-0.025790583721131,66.8819094639679 -00:00:56.5654,69.6492192975256,-2.0455163489234,-6.01622455565705,-0.0259360730021062,66.874623618257 -00:00:56.5734,69.6492269016557,-2.07730048612135,-6.10970731212162,-0.0260093987151472,66.8673069510246 -00:00:56.5814,69.6492345726368,-2.08088250740138,-6.12024266882758,-0.0260166697172378,66.8599786557807 -00:00:56.5894,69.6492422159126,-2.06116493062554,-6.06224979595747,-0.0259693517291663,66.8526556285678 -00:00:56.5973,69.6492497573282,-2.02447240219109,-5.95433059467968,-0.0258822541887117,66.8453511234442 -00:00:56.6053,69.6492571468289,-1.97765807965194,-5.81664141074099,-0.0257714317189358,66.8380740889247 -00:00:56.6133,69.6492643589828,-1.92731548741635,-5.66857496298925,-0.0256523334018661,66.8308290730288 -00:00:56.6213,69.649271390937,-1.87916448509438,-5.52695436792463,-0.0255383617918814,66.8236165881608 -00:00:56.6293,69.6492782584953,-1.83764038305302,-5.40482465603831,-0.025439909738583,66.8164338118843 -00:00:56.6372,69.6492849910603,-1.80568863284065,-5.31084892011957,-0.0253638799178666,66.8092754908932 -00:00:56.6481,69.6492940038894,-1.77986017183181,-5.23488285832885,-0.0253017728991263,66.7995688327494 -00:00:56.6589,69.6493029353665,-1.77339421058119,-5.21586532523879,-0.0252850366814954,66.789877322892 -00:00:56.6698,69.6493118720352,-1.78285344397906,-5.24368659993842,-0.0253056289224878,66.7801854894967 -00:00:56.6806,69.6493208799033,-1.80292089638078,-5.30270851876701,-0.0253510993915349,66.7704815276755 -00:00:56.6915,69.6493299974882,-1.82769004921535,-5.37555896828044,-0.0254076090912161,66.7607585446925 -00:00:56.7023,69.6493392355254,-1.8518213432696,-5.44653336255764,-0.0254626396370617,66.7510146146664 -00:00:56.7132,69.6493485816294,-1.87133909062235,-5.50393850183045,-0.0255068633804443,66.7412519479785 -00:00:56.7265,69.649360177934,-1.88585705048489,-5.54663838377909,-0.0255390114847496,66.7292282304977 -00:00:56.7442,69.6493756366953,-1.88949207250376,-5.55732962501106,-0.0255450049962427,66.7132604079836 -00:00:56.7619,69.6493910771894,-1.88036451658927,-5.53048387232138,-0.0255210424273003,66.6972974450362 -00:00:56.7796,69.6494064298318,-1.86628353497796,-5.4890692205234,-0.0254854426087128,66.6813518030804 -00:00:56.7973,69.6494216818867,-1.85439064990917,-5.45409014679168,-0.0254549713707023,66.6654257670432 -00:00:56.8150,69.6494368646677,-1.84874495675205,-5.4374851669178,-0.0254391667383786,66.6495137310229 -00:00:56.8366,69.6494553796098,-1.85040219713431,-5.4423594033362,-0.0254399573512005,66.6300958361159 -00:00:56.8583,69.649473933529,-1.85746737375077,-5.46313933456108,-0.0254534633043707,66.6106733192011 -00:00:56.8799,69.649492553891,-1.86483060009432,-5.48479588263037,-0.0254676806239097,66.5912412508593 -00:00:56.9015,69.6495112288898,-1.86904719443285,-5.49719763068485,-0.0254745081461943,66.5718017424282 -00:00:56.9293,69.6495353271142,-1.86930173417895,-5.49794627699693,-0.0254711299408234,66.5467433727608 -00:00:56.9572,69.6495594149305,-1.86675456530096,-5.49045460382636,-0.0254611629756877,66.5216907832577 -00:00:56.9850,69.64958347989,-1.86494831040457,-5.48514208942521,-0.0254529401657944,66.4966462053557 -00:00:57.0000,69.649596348963,-1.86495908869735,-5.48517379028634,-0.0254508427284502,66.4832496342583 -00:00:57.0010,69.6495972647009,-1.8653211520056,-5.4862386823694,-0.0254515444606602,66.4822964175141 -00:00:57.0021,69.6495981808363,-1.86645509509527,-5.48957380910373,-0.0254540641853255,66.4813431350093 -00:00:57.0036,69.6495994809126,-1.86996933786641,-5.49990981725416,-0.0254621273426324,66.4799918236035 -00:00:57.0051,69.6496007842851,-1.87587002791701,-5.51726478799121,-0.0254758118507925,66.4786399312932 -00:00:57.0066,69.6496020925686,-1.88412222252731,-5.54153594860975,-0.0254950358839868,66.4772871679564 -00:00:57.0086,69.6496038851672,-1.89881702191718,-5.58475594681524,-0.0255293599472821,66.4754430453108 -00:00:57.0130,69.6496078136014,-1.94184508187259,-5.71130906433113,-0.0256301012760497,66.4714535101722 -00:00:57.0194,69.649613696421,-2.02530145249625,-5.95676897793014,-0.0258258505531947,66.4656384551801 -00:00:57.0258,69.6496198487398,-2.12541059105038,-6.2512076207364,-0.0260609141942383,66.4597751529084 -00:00:57.0322,69.64962630488,-2.23263807343486,-6.56658256892606,-0.0263128438395162,66.4538574156632 -00:00:57.0386,69.6496330742919,-2.33858629493697,-6.87819498510873,-0.026561847869776,66.447883524782 -00:00:57.0450,69.6496401437266,-2.43635284112198,-7.16574365035876,-0.0267916392780213,66.4418558446205 -00:00:57.0514,69.6496474817574,-2.52069684937762,-7.41381426287534,-0.0269898345443015,66.4357800131434 -00:00:57.0578,69.6496550438808,-2.58809732583575,-7.61205095834044,-0.0271480990997285,66.4296640268493 -00:00:57.0666,69.6496656149571,-2.6497167187303,-7.79328446685382,-0.0272924700853424,66.4212747982757 -00:00:57.0753,69.6496763655862,-2.67700742121242,-7.87355123886006,-0.0273558215876597,66.4128535715286 -00:00:57.0840,69.6496871669842,-2.67371210522794,-7.86385913302336,-0.0273469517523336,66.4044235370527 -00:00:57.0927,69.6496979094359,-2.6463384718996,-7.78334844676352,-0.027281207818877,66.3960044591331 -00:00:57.1015,69.6497085120907,-2.60293392216509,-7.65568800636791,-0.02717758770192,66.3876109067952 -00:00:57.1102,69.6497189268436,-2.55183751693354,-7.50540446156923,-0.0270557859135091,66.3792515511727 -00:00:57.1189,69.6497291374649,-2.50063294714796,-7.35480278572929,-0.0269337157191584,66.3709293205767 -00:00:57.1277,69.6497391551341,-2.45540160549505,-7.22176942792663,-0.0268257428983375,66.3626422044693 -00:00:57.1364,69.6497490116369,-2.42030435664283,-7.11854222542008,-0.0267416979641428,66.3543844788284 -00:00:57.1474,69.6497613076073,-2.39352893177744,-7.03979097581601,-0.0266770017726685,66.3439821695388 -00:00:57.1608,69.6497761418118,-2.38606756576612,-7.01784578166505,-0.0266576202124258,66.3313656120281 -00:00:57.1742,69.649790992674,-2.40020261578837,-7.05941945820109,-0.026689276937909,66.3187468770474 -00:00:57.1876,69.6498059627523,-2.42664181506371,-7.13718180901091,-0.0267500343760237,66.3061074707097 -00:00:57.2010,69.6498210985944,-2.45562305172336,-7.22242074036281,-0.0268168274862289,66.2934389904688 -00:00:57.2144,69.6498363937967,-2.47938390454174,-7.29230560159337,-0.0268713001532477,66.2807425809982 -00:00:57.2278,69.6498518047749,-2.49354160481923,-7.33394589652715,-0.0269030755170795,66.2680260964133 -00:00:57.2446,69.6498711878842,-2.49707555893078,-7.34433987920818,-0.0269092909264301,66.2520752795747 -00:00:57.2614,69.649890556918,-2.48897531859964,-7.32051564294012,-0.0268879748207248,66.2361282782144 -00:00:57.2781,69.6499098494644,-2.47587979905056,-7.28199940897224,-0.0268548265321364,66.2201963613627 -00:00:57.2949,69.6499290502187,-2.46409564108272,-7.24734012083153,-0.0268247733003959,66.2042822965353 -00:00:57.3117,69.6499481821248,-2.45753384322972,-7.22804071538152,-0.0268070800381359,66.1883819435771 -00:00:57.3335,69.6499729476617,-2.45760931670099,-7.22826269617939,-0.026804469386704,66.1677821633439 -00:00:57.3552,69.6499977410832,-2.46385251488655,-7.24662504378397,-0.0268164789897866,66.1471794827178 -00:00:57.3770,69.650022597119,-2.47119688943669,-7.26822614540204,-0.026831110149629,66.1265676182389 -00:00:57.3988,69.6500475097308,-2.47583909261438,-7.28187968415994,-0.0268393454237014,66.105947654994 -00:00:57.4273,69.6500802170658,-2.47656784487639,-7.28402307316587,-0.0268374438830852,66.0789002176083 -00:00:57.4654,69.6501238158071,-2.47364033818666,-7.27541275937253,-0.0268256617365423,66.0428410659916 -00:00:57.5000,69.6501634259891,-2.47191832785699,-7.27034802310878,-0.0268171833772919,66.0100690435011 -00:00:57.5013,69.6501649400852,-2.4724334642334,-7.27186313009823,-0.026818239292173,66.0088161874426 -00:00:57.5026,69.6501664548747,-2.47418201964941,-7.27700594014534,-0.0268222247324772,66.0075632135702 -00:00:57.5043,69.6501684161217,-2.4789227485533,-7.29094926045089,-0.0268332684424687,66.0059426790306 -00:00:57.5060,69.650170382277,-2.48655786682562,-7.3134054906636,-0.0268511879520067,66.0043212682073 -00:00:57.5077,69.6501723555453,-2.49695185295925,-7.34397603811544,-0.0268756620944644,66.0026985815511 -00:00:57.5105,69.6501755753512,-2.51894048640156,-7.40864848941637,-0.0269275488331487,66.0000644354855 -00:00:57.5169,69.6501831132495,-2.5880186030972,-7.61181942087412,-0.027090880364378,65.9939862954992 -00:00:57.5232,69.6501908825756,-2.67646639572973,-7.87195998744037,-0.0273002988274898,65.9878663812585 -00:00:57.5296,69.6501989246114,-2.77512185278047,-8.16212309641315,-0.0275340577880051,65.9816971938955 -00:00:57.5360,69.6502072578248,-2.87568385534893,-8.45789369220275,-0.0277724362164217,65.9754753667726 -00:00:57.5424,69.6502158782846,-2.97113921433217,-8.73864474803579,-0.027998754556845,65.9692015945463 -00:00:57.5487,69.650224763357,-3.05595953457199,-8.98811627815291,-0.028199847774474,65.9628799665511 -00:00:57.5566,69.6502360985498,-3.14044381353111,-9.23659945156209,-0.0284000426637135,65.95497762366 -00:00:57.5663,69.6502502339179,-3.20788257938395,-9.43494876289397,-0.028559546397663,65.9452947199331 -00:00:57.5759,69.6502645831754,-3.23635649387257,-9.51869557021343,-0.0286263182590396,65.9355733261243 -00:00:57.5855,69.6502789855017,-3.2303474514664,-9.50102191607764,-0.0286109792626005,65.9258426448557 -00:00:57.5952,69.6502933067769,-3.19812462997448,-9.40624891168966,-0.0285331949803487,65.9161270413037 -00:00:57.6048,69.6503074531344,-3.14986878299009,-9.26431994997084,-0.0284172034688784,65.9064435742528 -00:00:57.6144,69.6503213755949,-3.09583424664689,-9.10539484307908,-0.0282874279867833,65.8968011492951 -00:00:57.6240,69.6503350673045,-3.0448834967431,-8.95553969630323,-0.0281649804991437,65.8872010180186 -00:00:57.6337,69.6503485554241,-3.00353639716473,-8.83393057989628,-0.0280653949872822,65.8776382505085 -00:00:57.6433,69.6503618899774,-2.97555657886937,-8.75163699667462,-0.0279976424228414,65.8681037609085 -00:00:57.6568,69.6503804120357,-2.95997257374387,-8.70580168748197,-0.0279589784284367,65.8547921059098 -00:00:57.6702,69.6503989066485,-2.96752360003689,-8.72801058834379,-0.0279754463273844,65.8414861649377 -00:00:57.6837,69.6504174888206,-2.99001040513282,-8.79414825039065,-0.0280275310398484,65.8281650262643 -00:00:57.6972,69.6504362216626,-3.01784587170934,-8.87601726973334,-0.0280923940109421,65.8148172048062 -00:00:57.7107,69.6504551140997,-3.04270656149961,-8.94913694558708,-0.0281501897747687,65.801441066245 -00:00:57.7241,69.6504741331952,-3.05925831082903,-8.99781856126184,-0.0281881860853925,65.7880425928891 -00:00:57.7410,69.6504981228492,-3.06604288711851,-9.01777319740737,-0.0282025087519457,65.7711891276815 -00:00:57.7580,69.6505221194453,-3.06031274007447,-9.00091982374843,-0.0281869654654536,65.7543355172879 -00:00:57.7749,69.6505460515814,-3.04815799402352,-8.9651705706574,-0.0281560776206688,65.7374947630584 -00:00:57.7918,69.6505698937235,-3.03602097963793,-8.92947346952331,-0.028125221685344,65.7206715191362 -00:00:57.8088,69.6505936612612,-3.02835350818615,-8.90692208290044,-0.0281050325992521,65.703862986369 -00:00:57.8313,69.6506252416311,-3.02695576976783,-8.90281108755245,-0.0280991998590739,65.6815082739244 -00:00:57.8605,69.650666232,-3.03395173369893,-8.92338745205567,-0.0281126973844333,65.6525152259686 -00:00:57.8897,69.6507073128713,-3.04226292299964,-8.94783212646953,-0.0281293603140121,65.6235089893091 -00:00:57.9189,69.6507484649662,-3.04578624790346,-8.95819484677487,-0.0281345880855016,65.59449306669 -00:00:57.9540,69.6507978658565,-3.04407847859069,-8.95317199585498,-0.0281266671201825,65.5596724348424 -00:00:57.9890,69.6508472379375,-3.04103876210179,-8.94423165324057,-0.0281155586903622,65.5248618103558 -00:00:58.0000,69.6508626455394,-3.040393734249,-8.94233451249706,-0.0281128197427241,65.5139953325045 -00:00:58.0015,69.6508648023354,-3.04106995323522,-8.94432339186829,-0.0281142728394233,65.5124742222102 -00:00:58.0030,69.6508669602273,-3.04335938612178,-8.95105701800524,-0.0281195916221047,65.5109529206197 -00:00:58.0052,69.6508700743296,-3.05039421675568,-8.97174769634025,-0.0281362083682413,65.5087601235023 -00:00:58.0074,69.6508731978753,-3.06180445877748,-9.00530723169848,-0.0281633116106843,65.5065656188886 -00:00:58.0096,69.6508763350692,-3.07723528458958,-9.05069201349876,-0.0282000526754886,65.5043686379277 -00:00:58.0134,69.6508816668251,-3.11079840882427,-9.14940708477727,-0.0282800942580532,65.5006571099722 -00:00:58.0205,69.6508920370104,-3.19386827027982,-9.39373020670535,-0.0284784788860022,65.4935390916347 -00:00:58.0276,69.6509027050499,-3.29335546439701,-9.68633960116768,-0.0287163093395165,65.4863667820758 -00:00:58.0347,69.6509137048516,-3.39823465656042,-9.99480781341301,-0.0289671718916347,65.4791339568981 -00:00:58.0418,69.6509250394576,-3.49897741472543,-10.2911100433101,-0.0292082128917432,65.471840035409 -00:00:58.0489,69.6509366840775,-3.58809964442038,-10.5532342482952,-0.0294214577332333,65.4644895319804 -00:00:58.0573,69.6509507982583,-3.67134159597617,-10.798063517577,-0.0296205495045271,65.4557288889931 -00:00:58.0674,69.6509681575212,-3.73477549082214,-10.9846337965357,-0.0297719954484581,65.445101918299 -00:00:58.0775,69.6509857208366,-3.75815121838438,-11.0533859364247,-0.0298272642688933,65.434437884428 -00:00:58.0877,69.6510033162934,-3.74692221039394,-11.0203594423351,-0.0297994009218642,65.4237682801564 -00:00:58.0978,69.6510208050037,-3.71054876692573,-10.9133787262521,-0.0297111058350087,65.4131185609293 -00:00:58.1079,69.6510380955113,-3.66025154423166,-10.7654457183284,-0.0295893298109865,65.4025054961926 -00:00:58.1181,69.651055147367,-3.60689645451039,-10.6085189838541,-0.0294601820889099,65.3919365084104 -00:00:58.1282,69.6510719659695,-3.55939362010484,-10.4688047650142,-0.0293450771347254,65.381410615779 -00:00:58.1384,69.6510885914779,-3.52375869894601,-10.3639961733706,-0.0292584772078858,65.37092046287 -00:00:58.1512,69.6511094587812,-3.49966971193362,-10.2931462115695,-0.0291993603287618,65.3576773744917 -00:00:58.1670,69.6511351715017,-3.49908773987303,-10.2914345290383,-0.0291964624104134,65.3413217427083 -00:00:58.1829,69.6511609542505,-3.5208995662055,-10.3555869594279,-0.0292474302804017,65.3249540972401 -00:00:58.1988,69.6511869176278,-3.55135563328638,-10.4451636273129,-0.0293192258355857,65.3085541355863 -00:00:58.2146,69.6512130821613,-3.57810891993307,-10.523849764509,-0.0293821496952044,65.2921180738423 -00:00:58.2305,69.6512393977975,-3.59367970200749,-10.569646182375,-0.0294181858861397,65.275655084968 -00:00:58.2463,69.6512657809585,-3.59642419260741,-10.5777182135512,-0.0294233538852009,65.2591805060121 -00:00:58.2668,69.6512997842479,-3.58695958495946,-10.5498811322337,-0.0293986995043878,65.2379346316567 -00:00:58.2872,69.6513336826622,-3.57220717308258,-10.506491685537,-0.0293612934083479,65.21670937589 -00:00:58.3077,69.6513674671258,-3.5610369936992,-10.4736382167624,-0.0293325051449576,65.1955064134013 -00:00:58.3282,69.6514011855344,-3.55759358064129,-10.4635105312979,-0.0293223353608236,65.174316944045 -00:00:58.3576,69.6514496561733,-3.56277252456969,-10.4787427193226,-0.0293321482906923,65.1438659934808 -00:00:58.3870,69.6514982079349,-3.57136622434192,-10.504018306888,-0.0293502209297865,65.1134028827602 -00:00:58.4163,69.6515468387196,-3.57601012623791,-10.5176768418762,-0.0293587816178835,65.0829279823935 -00:00:58.4457,69.6515954946337,-3.57524236411439,-10.5154187179835,-0.0293542856371785,65.0524512038968 -00:00:58.4902,69.651669110876,-3.57147267982892,-10.5043314112615,-0.0293411866488097,65.0063268042415 -00:00:58.5000,69.6516851485312,-3.57058203739331,-10.5017118746862,-0.0293381653375737,64.9962758288493 -00:00:58.5017,69.6516880653236,-3.57142083053121,-10.5041789133271,-0.029340035817607,64.994447837055 -00:00:58.5035,69.6516909836999,-3.57433078049517,-10.5127375896917,-0.0293469148207194,64.9926195629036 -00:00:58.5059,69.6516949208632,-3.58240585055238,-10.5364877957423,-0.0293662303969763,64.9901558429566 -00:00:58.5082,69.6516988694608,-3.59512267210237,-10.5738902120658,-0.0293967735212345,64.9876900314038 -00:00:58.5106,69.6517028342616,-3.61201708426124,-10.6235796595919,-0.0294374236732008,64.9852212481908 -00:00:58.5153,69.6517107694583,-3.65530194702921,-10.7508880794977,-0.0295417111846119,64.9803097557749 -00:00:58.5233,69.6517244589682,-3.74886283277126,-11.0260671552096,-0.0297673971304035,64.9719485484231 -00:00:58.5313,69.6517385164047,-3.85653147966123,-11.3427396460624,-0.0300273320179644,64.9635196097482 -00:00:58.5393,69.6517529671444,-3.96474710880018,-11.6610209082358,-0.030288714217616,64.9550182237996 -00:00:58.5473,69.6517677943995,-4.06245967298753,-11.9484108029045,-0.0305247785793096,64.9464474593875 -00:00:58.5552,69.6517829465247,-4.14181018588705,-12.1817946643737,-0.0307164573484082,64.9378168298973 -00:00:58.5650,69.6518017672118,-4.20742712782134,-12.3747856700628,-0.0308748117044686,64.9272203984278 -00:00:58.5778,69.6518268038922,-4.24128321006386,-12.4743623825408,-0.0309560325437068,64.9132311319382 -00:00:58.5881,69.6518470004811,-4.23037107853676,-12.4422678780493,-0.0309288927665515,64.901971722894 -00:00:58.5984,69.6518670928301,-4.19519117608896,-12.3387975767322,-0.0308428913662277,64.8907318466165 -00:00:58.6087,69.6518869905559,-4.14678060276231,-12.1964135375362,-0.0307247800441124,64.8795282285582 -00:00:58.6190,69.6519066554823,-4.0958115681676,-12.0465046122577,-0.0306004377077251,64.868367939983 -00:00:58.6293,69.6519260950453,-4.05095055713496,-11.9145604621617,-0.0304908854567726,64.8572496141461 -00:00:58.6396,69.6519453506759,-4.01792964394623,-11.8174401292536,-0.0304100322561439,64.8461655933029 -00:00:58.6535,69.6519710459439,-3.99599388450688,-11.7529231897261,-0.0303557929938944,64.8313091331707 -00:00:58.6703,69.6520021923427,-3.99921320933183,-11.7623917921524,-0.030362364722847,64.8132750362467 -00:00:58.6871,69.6520334358784,-4.02351632490585,-11.8338715438407,-0.0304201312417054,64.7952236823245 -00:00:58.7039,69.6520648788181,-4.05376902734598,-11.9228500804293,-0.0304923845139099,64.7771361187719 -00:00:58.7207,69.6520965225564,-4.07749125812942,-11.9926213474395,-0.0305488179765988,64.7590120672703 -00:00:58.7376,69.6521282974214,-4.0883381541735,-12.0245239828632,-0.0305739964680754,64.7408644209508 -00:00:58.7595,69.6521698167679,-4.08480943829157,-12.0141454067399,-0.0305638865822014,64.7171650307042 -00:00:58.7815,69.6522112568701,-4.07066116821314,-11.9725328476857,-0.0305279484129222,64.6934815314855 -00:00:58.8034,69.6522525684611,-4.05705055657038,-11.9325016369717,-0.0304932999638793,64.6698230677729 -00:00:58.8254,69.6522937859534,-4.05085802935781,-11.9142883216406,-0.0304766873306374,64.6461832615449 -00:00:58.8532,69.6523460065708,-4.0536678064604,-11.9225523719423,-0.0304815750860186,64.6162273055634 -00:00:58.8810,69.6523982859524,-4.06153860791277,-11.9457017879787,-0.0304988052018874,64.5862623417285 -00:00:58.9089,69.6524506419925,-4.06721002526781,-11.9623824272583,-0.030510699743842,64.5562850306872 -00:00:58.9436,69.6525159738444,-4.06758250372184,-11.9634779521231,-0.0305092216599049,64.5188969726009 -00:00:59.0000,69.6526220836101,-4.06334781752422,-11.9510229927183,-0.0304950332035114,64.4581603780977 -00:00:59.0018,69.6526256123942,-4.0641367609902,-11.9533434146771,-0.0304968312125559,64.4561404756282 -00:00:59.0037,69.6526291426762,-4.06713833807844,-11.9621715825837,-0.030504030849424,64.4541203025526 -00:00:59.0062,69.6526339446045,-4.07562887174903,-11.9871437404383,-0.0305245857816034,64.4513751452036 -00:00:59.0088,69.6526387593837,-4.08899829407235,-12.026465570801,-0.0305570547011323,64.4486276100123 -00:00:59.0119,69.6526445883933,-4.11075560148277,-12.0904576514199,-0.0306099734496798,64.4453109772217 -00:00:59.0179,69.652656146323,-4.16688744889399,-12.2555513202764,-0.0307466560815185,64.438777398719 -00:00:59.0266,69.6526731870046,-4.26794687779426,-12.552784934689,-0.0309929763078367,64.4292659159989 -00:00:59.0353,69.652690648754,-4.3783698642738,-12.8775584243347,-0.0312623062486037,64.4196761164424 -00:00:59.0441,69.6527085386099,-4.48319531406031,-13.1858685707656,-0.031518092011139,64.410006649459 -00:00:59.0528,69.6527268134953,-4.57113499791008,-13.4445146997355,-0.0317327093425789,64.4002655111818 -00:00:59.0615,69.6527453933187,-4.63520021741745,-13.6329418159337,-0.0318890185904612,64.3904676122388 -00:00:59.0730,69.6527701481071,-4.67937338715343,-13.7628629033924,-0.0319965943512406,64.3775084412446 -00:00:59.0845,69.6527950287858,-4.68179938998224,-13.7699982058301,-0.0320020291840774,64.364525981253 -00:00:59.0960,69.65281984413,-4.65233048628754,-13.6833249596692,-0.0319293801778206,64.3515559298767 -00:00:59.1075,69.6528444611097,-4.60436500561191,-13.5422500165056,-0.031811419994504,64.3386231347702 -00:00:59.1190,69.6528688169111,-4.5515684480814,-13.3869660237688,-0.0316815975177384,64.3257393384435 -00:00:59.1305,69.6528929139699,-4.50520647683199,-13.2506072848,-0.0315674984150829,64.3129040987767 -00:00:59.1420,69.6529168035835,-4.47256543938938,-13.1546042334982,-0.0314869734800788,64.3001078452182 -00:00:59.1567,69.6529473313635,-4.454617267317,-13.1018154921088,-0.031442246391981,64.2836983536616 -00:00:59.1715,69.6529778137503,-4.46006936265931,-13.117851066645,-0.0314548412774204,64.2672977390814 -00:00:59.1862,69.653008377712,-4.48051990147047,-13.1779997102073,-0.0315042088427314,64.2508822677207 -00:00:59.2010,69.6530390904616,-4.50574692285165,-13.2521968319166,-0.0315653176443942,64.2344393623418 -00:00:59.2158,69.6530699569163,-4.52707442335519,-13.3149247745741,-0.0316168986149807,64.2179680884901 -00:00:59.2337,69.6531076744928,-4.54077192096028,-13.3552115322361,-0.0316496378379923,64.1978897877451 -00:00:59.2573,69.653157076813,-4.53950312161413,-13.3514797694533,-0.031645406310382,64.1716129166269 -00:00:59.2808,69.6532064095762,-4.52597125499874,-13.311680161761,-0.031611065786061,64.1453500055083 -00:00:59.3043,69.6532556090521,-4.51230537211217,-13.2714863885652,-0.0315763765482847,64.1191129951012 -00:00:59.3278,69.6533047089368,-4.50619627096948,-13.2535184440279,-0.0315602379629655,64.0928955802596 -00:00:59.3576,69.6533668104162,-4.50922799492404,-13.2624352791884,-0.0315662696840011,64.0597310089446 -00:00:59.3873,69.65342897303,-4.51678111697891,-13.2846503440556,-0.0315834419183079,64.0265564491614 -00:00:59.4171,69.6534912081525,-4.52143964332136,-13.2983518921217,-0.0315935183425218,63.9933697485687 -00:00:59.4552,69.6535710492864,-4.52052840141532,-13.2956717688686,-0.031589512716301,63.9508059289955 -00:00:59.5000,69.6536646420412,-4.51639652935078,-13.2835192039729,-0.0315772811651424,63.900899214935 -00:00:59.5024,69.6536698409076,-4.51796813442182,-13.2881415718289,-0.0315810420191864,63.8981269307865 -00:00:59.5049,69.6536750437182,-4.5232875457244,-13.3037868991894,-0.0315940427989774,63.8953539146938 -00:00:59.5074,69.6536802551546,-4.53299890420079,-13.3323497182376,-0.0316178731401994,63.8925792862406 -00:00:59.5099,69.6536854800736,-4.54685047651506,-13.373089636809,-0.0316519144429643,63.889802131808 -00:00:59.5138,69.6536936488309,-4.57516360855585,-13.456363554576,-0.0317215608246379,63.8854734724553 -00:00:59.5223,69.6537118951946,-4.65700191981696,-13.6970644700499,-0.0319230536476779,63.8758812183858 -00:00:59.5308,69.6537304930193,-4.75472546358513,-13.9844866576033,-0.0321638422395019,63.866222926442 -00:00:59.5394,69.6537494736251,-4.85399574403901,-14.276458070703,-0.0324085734338749,63.8564926687157 -00:00:59.5479,69.6537688218263,-4.94315505295841,-14.5386913322306,-0.0326284635796386,63.8466932698641 -00:00:59.5564,69.6537884836389,-5.01406533616334,-14.7472509887157,-0.0328033842570278,63.8368348666897 -00:00:59.5674,69.6538140813588,-5.07170877716472,-14.9167905210727,-0.0329455529055573,63.8240999801307 -00:00:59.5817,69.653847695153,-5.09231863780881,-14.9774077582612,-0.0329961918351416,63.8074528051109 -00:00:59.5933,69.6538750024762,-5.07120615161775,-14.9153122106405,-0.0329437610020236,63.793933425096 -00:00:59.6049,69.6539021479139,-5.02908981706483,-14.791440638426,-0.032839377696661,63.7804446780482 -00:00:59.6165,69.6539290527084,-4.97927522706631,-14.6449271384303,-0.0327159250585903,63.7670014283821 -00:00:59.6282,69.6539557051663,-4.93333390345212,-14.5098055983886,-0.0326020146253777,63.7536058954657 -00:00:59.6398,69.6539821455396,-4.89924123117934,-14.4095330328804,-0.0325173763420496,63.7402504991799 -00:00:59.6547,69.6540159365397,-4.87809135415116,-14.3473275122093,-0.0324646338512143,63.7231242537538 -00:00:59.6742,69.6540599481647,-4.88290318993444,-14.3614799703954,-0.032475985912301,63.7007976762325 -00:00:59.6936,69.6541040854681,-4.90920578408458,-14.4388405414252,-0.0325405597833866,63.6784477368413 -00:00:59.7131,69.6541484528288,-4.93812022636054,-14.5238830187075,-0.0326116573340924,63.6560547015132 -00:00:59.7326,69.6541930196786,-4.9560655316575,-14.5766633284044,-0.032655633031894,63.6336243165659 -00:00:59.7520,69.6542376777302,-4.95874045344341,-14.5845307454218,-0.0326617925412915,63.6111770259045 -00:00:59.7789,69.6542992619133,-4.94660659441651,-14.5488429247544,-0.0326310602321776,63.580203588576 -00:00:59.8058,69.6543606933435,-4.93087973914574,-14.5025874680757,-0.0325913936000077,63.5492596729067 -00:00:59.8326,69.6544219947849,-4.92321410571092,-14.4800414873851,-0.0325717102608887,63.5183409809927 -00:00:59.8595,69.6544832627991,-4.9253969902799,-14.4864617361174,-0.032576477620468,63.4874292345859 -00:00:59.8961,69.654566874122,-4.9334409768399,-14.5101205201174,-0.0325955959544365,63.4452702367539 -00:00:59.9328,69.6546505707826,-4.93776917995804,-14.5228505292884,-0.0326055170116551,63.4030961629058 -00:00:59.9694,69.6547342832877,-4.93582256037433,-14.5171251775716,-0.0325998531850086,63.3609201642519 -00:01:00.0000,69.6548040912425,-4.93221140731345,-14.5065041391572,-0.0325901879135166,63.3257406456866 -00:01:00.0028,69.65481055292,-4.9341553035244,-14.5122214809541,-0.0325949666158021,63.3224842360725 -00:01:00.0056,69.6548170202042,-4.94060661564585,-14.5311959283701,-0.0326109714076171,63.3192267674218 -00:01:00.0084,69.6548234992879,-4.95218405014644,-14.5652472063131,-0.0326397455040233,63.3159670631257 -00:01:00.0113,69.6548299964949,-4.9684525244226,-14.6130956600665,-0.032680208115356,63.3127039213528 -00:01:00.0159,69.6548407267673,-5.00313519005358,-14.7151035001576,-0.0327665150484187,63.3073322127619 -00:01:00.0251,69.6548622364817,-5.08989968733796,-14.9702931980528,-0.0329825563533038,63.2966462505407 -00:01:00.0343,69.6548841361203,-5.1883880593937,-15.2599648805697,-0.033227943176639,63.285886199367 -00:01:00.0435,69.6549064406555,-5.28332782280466,-15.5391994788372,-0.0334646188005267,63.2750491726276 -00:01:00.0527,69.6549291124789,-5.36306552758965,-15.7737221399696,-0.0336634983520774,63.2641422855076 -00:01:00.0619,69.6549520740194,-5.42039983526432,-15.9423524566598,-0.0338065695841581,63.2531802668777 -00:01:00.0746,69.6549838849579,-5.45874907999633,-16.0551443529304,-0.0339023275453158,63.2380704896667 -00:01:00.0872,69.6550158009265,-5.45543213540759,-16.0453886335517,-0.0338940904457776,63.2229407012577 -00:01:00.0999,69.6550476182787,-5.42215346748148,-15.9475101984749,-0.0338110168576267,63.2078296848284 -00:01:00.1125,69.6550792071017,-5.37410766962646,-15.8061990283131,-0.0336910230933625,63.1927621987453 -00:01:00.1251,69.6551105220772,-5.32585493044201,-15.6642792071824,-0.0335704690416114,63.1777468939605 -00:01:00.1378,69.6551415908613,-5.28823095266415,-15.5536204490122,-0.03347642931992,63.162778517608 -00:01:00.1504,69.6551724889132,-5.26686712613418,-15.4907856651005,-0.0334229903492143,63.1478427022645 -00:01:00.1691,69.6552180482472,-5.26376013804849,-15.4816474648485,-0.033415139825628,63.1257923412467 -00:01:00.1878,69.6552636701965,-5.28349093503473,-15.5396792206904,-0.0334644054262033,63.1037300818003 -00:01:00.2065,69.6553094771076,-5.31013573926578,-15.6180462919582,-0.0335310125969513,63.0816325684976 -00:01:00.2251,69.6553554749633,-5.33031969513295,-15.6774108680381,-0.0335815042042574,63.0594986337651 -00:01:00.2438,69.6554015879603,-5.33767534759483,-15.6990451399848,-0.0335999164152398,63.0373427262353 -00:01:00.2704,69.6554672653535,-5.33040197688674,-15.6776528731963,-0.0335817034488681,63.005785010916 -00:01:00.2970,69.6555328217404,-5.31523511339804,-15.6330444511707,-0.0335436973522997,62.9742504272223 -00:01:00.3236,69.655598238219,-5.30488192019416,-15.602593882924,-0.0335177349777407,62.9427425967978 -00:01:00.3502,69.6556635897781,-5.30392583183365,-15.5997818583343,-0.0335153336290648,62.911247183655 -00:01:00.3924,69.6557672841857,-5.3109337980692,-15.620393523733,-0.0335329456959304,62.8612899655361 -00:01:00.4346,69.6558710675736,-5.31590762924037,-15.6350224389423,-0.0335455002514838,62.8113156362796 -00:01:00.4768,69.6559748700384,-5.3139843259922,-15.629365664683,-0.033540753514105,62.7613375480488 -00:01:00.5000,69.6560317718166,-5.3110119087603,-15.6206232610597,-0.0335333326197521,62.7339355275983 -00:01:00.5031,69.656039491126,-5.31324040782014,-15.6271776700592,-0.0335389485152007,62.7302182236063 -00:01:00.5062,69.6560472175634,-5.32055095606727,-15.6486792825508,-0.0335573547797586,62.7264995502205 -00:01:00.5094,69.6560549587103,-5.33349956107149,-15.6867634149161,-0.0335899537525726,62.7227780517664 -00:01:00.5125,69.6560627221724,-5.35147708681617,-15.7396384906358,-0.0336352159675452,62.7190522675644 -00:01:00.5180,69.6560762964796,-5.39160842607235,-15.8576718413893,-0.0337362717078567,62.7125593187782 -00:01:00.5279,69.6561012728118,-5.48099540683545,-16.1205747259866,-0.0339614458636179,62.7006988569007 -00:01:00.5378,69.6561266703739,-5.57775917873729,-16.4051740551097,-0.0342053415570164,62.6887574236336 -00:01:00.5477,69.6561524847476,-5.66594416273387,-16.6645416550996,-0.0344277642887382,62.6767358222078 -00:01:00.5576,69.6561786537914,-5.73430879097798,-16.8656140911117,-0.0346003432154807,62.6646459566736 -00:01:00.5696,69.6562105554462,-5.78262116878823,-17.0077093199654,-0.0347224973807069,62.6499926543555 -00:01:00.5855,69.6562530168942,-5.79253965374053,-17.036881334531,-0.0347479623416116,62.6305416342808 -00:01:00.5985,69.6562878151783,-5.76462411030732,-16.9547767950215,-0.034677877682868,62.6145913687142 -00:01:00.6115,69.6563224055504,-5.71997477097317,-16.8234552087446,-0.0345655233404433,62.5986809713964 -00:01:00.6245,69.656356729323,-5.67343384983025,-16.6865701465596,-0.0344483481421644,62.5828217582874 -00:01:00.6375,69.6563908066977,-5.63639477702888,-16.5776316971438,-0.034355117952863,62.5670098584364 -00:01:00.6505,69.6564247101772,-5.61499502289469,-16.5146912438079,-0.034301345868694,62.5512313243037 -00:01:00.6696,69.6564743309836,-5.61127130134549,-16.5037391216044,-0.0342923245966862,62.5281107302351 -00:01:00.6887,69.6565240075614,-5.62970571492545,-16.5579579850749,-0.034339305559526,62.5049791148251 -00:01:00.7078,69.6565738606255,-5.65474353959524,-16.6315986458683,-0.0344030274996222,62.4818131897318 -00:01:00.7269,69.6566238950146,-5.6733542929946,-16.6863361558665,-0.034450549131601,62.4586119947459 -00:01:00.7460,69.6566740350821,-5.6795159895939,-16.7044587929232,-0.0344666099420832,62.4353901009806 -00:01:00.7742,69.6567482790413,-5.67128751708103,-16.6802574031795,-0.0344464870796869,62.4009985397971 -00:01:00.8025,69.6568223901613,-5.65624435908831,-16.636012820848,-0.0344090890822926,62.3666319430073 -00:01:00.8308,69.6568963619081,-5.6471685588776,-16.6093192908165,-0.0343867875387475,62.3322915813457 -00:01:00.8590,69.65697027998,-5.64751598338736,-16.6103411276099,-0.034388372150824,62.2979608916937 -00:01:00.9032,69.6570858637238,-5.65426066980447,-16.6301784406014,-0.0344066195234524,62.244295689728 -00:01:00.9474,69.6572015195274,-5.65728349280894,-16.6390690964969,-0.0344154729686009,62.1906147285716 -00:01:00.9916,69.6573171664194,-5.65397722643991,-16.6293447836468,-0.0344082768950379,62.1369336455465 -00:01:01.0000,69.6573391377809,-5.6527352660409,-16.6256919589438,-0.0344053505152548,62.1267333282692 -00:01:01.0032,69.6573477042509,-5.65491342251647,-16.632098301519,-0.0344109815050743,62.122756550459 -00:01:01.0065,69.6573562780969,-5.66210554334028,-16.6532515980596,-0.0344293677995142,62.1187783308181 -00:01:01.0098,69.6573648670211,-5.67480460018502,-16.6906017652501,-0.0344617667161973,62.1147971744736 -00:01:01.0130,69.6573734787079,-5.69236259896867,-16.7422429381431,-0.0345065335358137,62.1108115896402 -00:01:01.0190,69.6573893654333,-5.73364125152265,-16.8636507397725,-0.0346117568541131,62.1034814402474 -00:01:01.0297,69.657417785481,-5.82195060843693,-17.1233841424615,-0.0348369062617536,62.0904544921461 -00:01:01.0403,69.6574466435876,-5.91484329671428,-17.3965979315126,-0.0350738763918148,62.0773423178787 -00:01:01.0509,69.6574759204103,-5.99578199499948,-17.6346529264691,-0.0352805450896859,62.0641486239507 -00:01:01.0615,69.6575055344005,-6.05394943039876,-17.8057336188199,-0.0354293030892025,62.0508892130718 -00:01:01.0747,69.6575426631052,-6.08859951796146,-17.9076456410631,-0.0355183233758715,62.0343344475314 -00:01:01.0880,69.6575798909315,-6.0854308067418,-17.8983259021818,-0.0355109419172796,62.0177600883078 -00:01:01.1012,69.6576170252693,-6.05534802799352,-17.8098471411574,-0.035434897903001,62.001203598821 -00:01:01.1144,69.6576539463843,-6.01270637296531,-17.6844305087215,-0.0353267746019149,61.984688287295 -00:01:01.1276,69.657690617317,-5.97105792750678,-17.5619350809023,-0.0352211384404879,61.9682213648891 -00:01:01.1408,69.6577270708066,-5.94009818719415,-17.4708770211593,-0.035142738038861,61.9517964780304 -00:01:01.1578,69.6577736657561,-5.92242767457588,-17.4189049252232,-0.0350983982733764,61.9307549648598 -00:01:01.1813,69.6578381293588,-5.93035396916178,-17.4422175563582,-0.0351197089934625,61.901633022335 -00:01:01.2048,69.6579027543851,-5.95622958134961,-17.5183222980871,-0.0351869260196892,61.8724787100437 -00:01:01.2282,69.6579676143173,-5.97833829353329,-17.5833479221567,-0.0352445896166723,61.8432776664645 -00:01:01.2517,69.6580326203065,-5.98519860330066,-17.6035253038255,-0.035263307683567,61.8140471809714 -00:01:01.2803,69.6581116333371,-5.97625548995123,-17.5772220292683,-0.0352418541196637,61.7785133168661 -00:01:01.3088,69.6581905121812,-5.96176319257369,-17.5345976252167,-0.0352061738047218,61.7430042228874 -00:01:01.3374,69.6582692575482,-5.95344970642537,-17.5101461953688,-0.035186299989638,61.7075197677869 -00:01:01.3718,69.6583641400001,-5.95444053524689,-17.513060397785,-0.0351905724925805,61.6647485066866 -00:01:01.4179,69.6584913014827,-5.96055880417611,-17.5310553064003,-0.0352086346706051,61.6074388838368 -00:01:01.4640,69.6586185127981,-5.96168586384284,-17.534370187773,-0.0352139401429437,61.5501156161593 -00:01:01.5000,69.6587177637926,-5.9581570126153,-17.5239912135744,-0.0352067743828765,61.5053842127315 -00:01:01.5034,69.6587273458635,-5.96037141721523,-17.5305041682801,-0.0352126541192623,61.5010656816626 -00:01:01.5069,69.6587369357498,-5.96765400200497,-17.5519235353087,-0.0352315701283038,61.4967455943419 -00:01:01.5104,69.6587465417099,-5.9804248202088,-17.58948476532,-0.0352646064583938,61.4924223302594 -00:01:01.5138,69.6587561718419,-5.99796071275587,-17.6410609198702,-0.0353099070849231,61.4880942998109 -00:01:01.5206,69.6587749432484,-6.04123665767481,-17.7683431108083,-0.0354216332165153,61.4796824008537 -00:01:01.5320,69.6588070474742,-6.12789945542569,-18.0232336924285,-0.0356453735237972,61.465382555087 -00:01:01.5434,69.6588396022207,-6.21541433593788,-18.2806303998173,-0.0358714674452945,61.4509939450797 -00:01:01.5548,69.6588725677116,-6.28713654597952,-18.4915780764104,-0.0360570328772857,61.4365243280793 -00:01:01.5662,69.6589058396456,-6.33330547535121,-18.6273690451506,-0.0361768622601532,61.4219941534419 -00:01:01.5810,69.6589495345339,-6.35244672713455,-18.6836668445134,-0.0362273560822617,61.4029628994469 -00:01:01.5959,69.6589932379072,-6.33392189506895,-18.6291820443204,-0.0361807415618811,61.3839293810709 -00:01:01.6108,69.6590367527777,-6.29396743689475,-18.5116689320434,-0.0360788193240867,61.3649323513299 -00:01:01.6257,69.6590799917143,-6.25024686356283,-18.3830790104789,-0.0359671252776286,61.345989033452 -00:01:01.6406,69.6591229717593,-6.21645322544715,-18.2836859571975,-0.0358809917846837,61.3270960990208 -00:01:01.6555,69.6591657796138,-6.19944745644422,-18.2336689895418,-0.0358381494537092,61.3082365025097 -00:01:01.6772,69.6592282114074,-6.20179767494708,-18.2405813969032,-0.0358457519575929,61.2807151680783 -00:01:01.6990,69.6592907440086,-6.2223469623711,-18.3010204775621,-0.0359003961521876,61.2531727738938 -00:01:01.7207,69.6593534673237,-6.24359757572679,-18.3635222815494,-0.0359569166408645,61.2255915728967 -00:01:01.7424,69.6594163389549,-6.25403775544377,-18.3942286924817,-0.0359855391868653,61.1979798906203 -00:01:01.7692,69.6594938738674,-6.25038830877817,-18.3834950258182,-0.0359781177133616,61.1639355629084 -00:01:01.8015,69.6595870486254,-6.23603397275204,-18.3412763904472,-0.0359433888536423,61.1229919447214 -00:01:01.8337,69.6596800620873,-6.22539366977757,-18.3099813816987,-0.0359182536760841,61.0820774254328 -00:01:01.8660,69.65977299699,-6.22433976451348,-18.3068816603338,-0.0359179606292652,61.0411756551786 -00:01:01.9156,69.6599161068566,-6.22937445112582,-18.3216895621348,-0.0359348250968699,60.9781955537344 -00:01:01.9652,69.6600592575456,-6.23070637126445,-18.3256069743072,-0.0359421444178971,60.9152006485803 -00:01:02.0000,69.6601593687958,-6.22753624557158,-18.3162830752105,-0.0359366299715778,60.8711377926866 -00:01:02.0040,69.6601709197417,-6.23029920659434,-18.3244094311598,-0.0359441321127333,60.8660539121323 -00:01:02.0080,69.660182481668,-6.23902013850404,-18.3500592308942,-0.0359671339312838,60.8609678077997 -00:01:02.0120,69.660194065438,-6.25394379749539,-18.3939523455747,-0.0360062772861803,60.8558773236588 -00:01:02.0160,69.6602056813652,-6.27401774686874,-18.4529933731434,-0.0360588298375102,60.8507804119044 -00:01:02.0243,69.6602298553755,-6.32535128059086,-18.603974354679,-0.0361931078415963,60.8402066261005 -00:01:02.0366,69.6602663528863,-6.41089552380486,-18.8555750700143,-0.0364168959035519,60.8243356390837 -00:01:02.0490,69.6603033105322,-6.48975667591978,-19.0875196350582,-0.0366234488772146,60.8083727621969 -00:01:02.0614,69.6603406481187,-6.54661691134984,-19.2547556216172,-0.0367728212484185,60.7923338691656 -00:01:02.0738,69.6603782261715,-6.57468677864699,-19.3373140548441,-0.0368472408732832,60.7762466387197 -00:01:02.0915,69.6604320360469,-6.57053380297574,-19.3250994205169,-0.0368382217999146,60.7532284735947 -00:01:02.1092,69.6604856900499,-6.53293031972105,-19.214500940356,-0.0367419289132051,60.7302402057053 -00:01:02.1269,69.6605390230944,-6.48667201327391,-19.0784470978644,-0.0366229850916922,60.7073147074628 -00:01:02.1446,69.6605920396148,-6.45175745667205,-18.975757225506,-0.036533573682032,60.684451132528 -00:01:02.1623,69.6606448601405,-6.43755249650533,-18.933977930898,-0.0364981799900577,60.661625514493 -00:01:02.1858,69.6607152118255,-6.44559987100374,-18.9576466794228,-0.0365214605998786,60.6312161140416 -00:01:02.2094,69.6607857059119,-6.46740385081792,-19.0217760318174,-0.0365807386182332,60.6007764219796 -00:01:02.2330,69.6608563925282,-6.48485278708802,-19.0730964326118,-0.0366287024189824,60.5702964066441 -00:01:02.2566,69.6609271883919,-6.48900903600227,-19.0853206941243,-0.0366419418211246,60.5397926439181 -00:01:02.2886,69.6610232173219,-6.47900332162697,-19.0558921224323,-0.0366189714069857,60.4984028934571 -00:01:02.3206,69.6611190960224,-6.46547707533725,-19.0161090451095,-0.0365867590964056,60.4570395232225 -00:01:02.3526,69.6612148475047,-6.45939292763168,-18.9982144930344,-0.0365740339415167,60.415697938267 -00:01:02.3931,69.6613360867729,-6.46158117340744,-19.0046505100219,-0.0365838852158269,60.3633389479138 -00:01:02.4428,69.6614848979138,-6.46510109980237,-19.0150032347128,-0.0365982308195568,60.2990742534119 -00:01:02.4926,69.661633702101,-6.46276104037181,-19.0081207069759,-0.0365972364626612,60.234801950384 -00:01:02.5000,69.6616558275312,-6.46179352226738,-19.0052750654923,-0.0365954621211287,60.2252439260325 -00:01:02.5048,69.6616702950385,-6.4655227045341,-19.0162432486297,-0.0366057787930988,60.2189949044097 -00:01:02.5096,69.6616847799097,-6.47673446132021,-19.049219003883,-0.0366357889933663,60.2127423108104 -00:01:02.5145,69.6616992979323,-6.49528304121341,-19.1037736506277,-0.0366851173117003,60.2064829748544 -00:01:02.5193,69.6617138632897,-6.51948140632497,-19.1749453127205,-0.0367493319170093,60.2002140469174 -00:01:02.5300,69.6617462628888,-6.58199547984999,-19.3588102348529,-0.0369151077493612,60.1863189405893 -00:01:02.5436,69.6617879828104,-6.66285230943594,-19.5966244395175,-0.0371296660509805,60.1685275284422 -00:01:02.5572,69.6618301472265,-6.72711289646373,-19.7856261660698,-0.0373006611675656,60.1506460096585 -00:01:02.5708,69.6618726201463,-6.7630142439317,-19.891218364505,-0.0373970112466653,60.132701663699 -00:01:02.5879,69.6619260658303,-6.76741586349112,-19.9041643043856,-0.0374107796534281,60.110153224603 -00:01:02.6049,69.6619794306735,-6.73972789380529,-19.8227290994273,-0.0373398786711977,60.0876197660626 -00:01:02.6220,69.6620325454255,-6.69969902284374,-19.704997126011,-0.0372363522233258,60.0651353678147 -00:01:02.6391,69.6620853798659,-6.66525900551392,-19.6037029573939,-0.0371475132903019,60.0427061445394 -00:01:02.6562,69.6621380114432,-6.64676528781099,-19.5493096700323,-0.0371007338639812,60.0203165280209 -00:01:02.6784,69.6622064723713,-6.64697254805284,-19.5499192589789,-0.0371039615132137,59.9911718641032 -00:01:02.7006,69.6622750047055,-6.66318234659418,-19.5975951370417,-0.037149513768352,59.9620106789685 -00:01:02.7229,69.662343692007,-6.68044497225183,-19.6483675654466,-0.037197910652357,59.9328160951207 -00:01:02.7451,69.6624125004806,-6.6886733164862,-19.6725685779006,-0.037222456195749,59.9035948976488 -00:01:02.7744,69.6625031390849,-6.68443157331246,-19.6600928626837,-0.0372148968983234,59.8651040933613 -00:01:02.8105,69.6626146447741,-6.67077491040533,-19.6199262070745,-0.0371832400572972,59.8177162866045 -00:01:02.8466,69.6627259888574,-6.66180726907103,-19.5935507913854,-0.0371639922361096,59.7703553875049 -00:01:02.8826,69.662837262916,-6.66158750387807,-19.5929044231708,-0.0371679609214947,59.7230028604299 -00:01:02.9415,69.6630187705958,-6.66436565596288,-19.6010754587144,-0.0371828375164021,59.6457548441132 -00:01:03.0000,69.6631991761112,-6.66205350400665,-19.5942750117843,-0.0371842202309442,59.5689545637249 -00:01:03.0051,69.6632151815474,-6.66596043332351,-19.6057659803633,-0.0371952938956386,59.5621411302633 -00:01:03.0103,69.6632312058774,-6.67717008798433,-19.6387355528951,-0.0372258166031365,59.5553237353779 -00:01:03.0155,69.6632472653666,-6.69539142081026,-19.6923277082655,-0.0372750220641889,59.5484990739385 -00:01:03.0218,69.6632666555457,-6.72387075805299,-19.7760904648617,-0.0373517086886859,59.5402737791766 -00:01:03.0345,69.6633064664677,-6.78957128920543,-19.9693273211924,-0.0375285019651347,59.5234472612114 -00:01:03.0472,69.6633466488579,-6.85278317484161,-20.1552446318871,-0.0376988030249841,59.5065444284673 -00:01:03.0599,69.6633871477322,-6.89983583604874,-20.2936348119081,-0.0378261382387496,59.4895764093771 -00:01:03.0752,69.6634360834056,-6.92635379636711,-20.3716288128444,-0.0378991630409219,59.4691264674284 -00:01:03.0963,69.6635036163785,-6.91745185193329,-20.3454466233332,-0.0378785670996253,59.4409175813111 -00:01:03.1174,69.6635709422948,-6.87916099640861,-20.2328264600253,-0.0377794623895864,59.4127485339295 -00:01:03.1385,69.6636379201928,-6.83988949784547,-20.1173220524867,-0.0376776510522404,59.3846480726285 -00:01:03.1596,69.6637046189942,-6.81841585258066,-20.054164272296,-0.0376233241931214,59.35660219727 -00:01:03.1807,69.6637712129672,-6.81840185010647,-20.0541230885484,-0.0376263400262884,59.3285754086043 -00:01:03.2071,69.6638547806387,-6.83459824000822,-20.1017595294359,-0.0376735256572662,59.2934216674612 -00:01:03.2335,69.6639385212814,-6.85081141888056,-20.1494453496487,-0.0377208328278157,59.2582289858739 -00:01:03.2600,69.664022374401,-6.85537082790857,-20.1628553762017,-0.0377369899162288,59.2230096721447 -00:01:03.2934,69.6641283783846,-6.84678257963177,-20.1375958224464,-0.037718978612924,59.1784740717432 -00:01:03.3268,69.6642342440766,-6.83465888937373,-20.1019379099227,-0.0376914705112485,59.1339608551938 -00:01:03.3603,69.6643399870669,-6.82872503299641,-20.0844853911659,-0.0376805613265745,59.0894668301433 -00:01:03.4051,69.6644818968149,-6.82951866555879,-20.0868196045847,-0.0376894699368411,59.0297349471424 -00:01:03.4617,69.6646608647547,-6.83060747000358,-20.0900219705988,-0.0377010222572131,58.9543891712216 -00:01:03.5000,69.6647816713949,-6.82804974372396,-20.0824992462469,-0.037700000971655,58.9035145080901 -00:01:03.5059,69.6648004498331,-6.8323578329165,-20.0951700968132,-0.0377125243323519,58.8956068499257 -00:01:03.5118,69.664819251874,-6.84462187903674,-20.1312408206963,-0.0377464942720958,58.8876941470221 -00:01:03.5178,69.6648380972081,-6.86411657487855,-20.1885781614075,-0.0377999670825487,58.8797723491775 -00:01:03.5250,69.6648612927155,-6.89428299967971,-20.2773029402344,-0.0378824463608719,58.870039574677 -00:01:03.5387,69.6649050442801,-6.95461764156064,-20.454757769296,-0.0380473731086855,58.8517418273043 -00:01:03.5523,69.6649491450438,-7.00767777241418,-20.6108169776888,-0.0381928110647915,58.8333711432736 -00:01:03.5660,69.6649935143882,-7.04193977874742,-20.7115875845512,-0.0382876189777129,58.81494406479 -00:01:03.5835,69.6650505176288,-7.05373946639426,-20.7462925482184,-0.0383224975733635,58.7913049663227 -00:01:03.6009,69.6651075089004,-7.03736303903777,-20.6981265854052,-0.0382812743420965,58.7676664847206 -00:01:03.6184,69.6651643267391,-7.00747161795115,-20.6102106410328,-0.0382034882207325,58.7440619012524 -00:01:03.6359,69.66522092091,-6.97901784488098,-20.5265230731794,-0.0381295311412604,58.7205015963122 -00:01:03.6534,69.6652773366419,-6.96172733254423,-20.4756686251301,-0.0380857151899246,58.6969762687378 -00:01:03.6770,69.6653534257477,-6.95867974897484,-20.4667051440437,-0.038081442187755,58.6652228162614 -00:01:03.7059,69.6654468311532,-6.97203212044946,-20.5059768248513,-0.0381224981385083,58.6262516587575 -00:01:03.7349,69.6655403897144,-6.98570792143546,-20.5461997689278,-0.0381645086788962,58.5872438063102 -00:01:03.7639,69.665634040787,-6.98822257087839,-20.5535957967012,-0.0381763251178027,58.548211744559 -00:01:03.8009,69.6657537960043,-6.97880277716434,-20.5258905210716,-0.0381571845038453,58.4982797668591 -00:01:03.8380,69.6658734019614,-6.96791457043451,-20.4938663836309,-0.0381340439301519,58.448370304557 -00:01:03.8750,69.6659928939095,-6.96365929918664,-20.4813508799607,-0.0381289233473712,58.3984760425211 -00:01:03.9282,69.6661644067334,-6.96416397460752,-20.4828352194339,-0.0381396094633013,58.3268358397439 -00:01:03.9814,69.6663358874254,-6.9631562328763,-20.4798712731656,-0.0381462538530444,58.2551847339624 -00:01:04.0000,69.6663957186455,-6.96156951159559,-20.4752044458694,-0.0381452208155453,58.2301783895094 -00:01:04.0080,69.6664215744736,-6.96827602567007,-20.4949294872649,-0.0381649410247715,58.2193740922916 -00:01:04.0160,69.6664474767039,-6.98586471721597,-20.5466609329882,-0.0382143640686227,58.2085597324807 -00:01:04.0240,69.6664734586441,-7.01187338645572,-20.6231570189874,-0.038286792060384,58.1977283714708 -00:01:04.0320,69.6664995427706,-7.04194404808549,-20.7116001414279,-0.0383703462063279,58.186875320959 -00:01:04.0462,69.6665460387279,-7.09181879874998,-20.8582905845588,-0.0385091956529399,58.1675821936494 -00:01:04.0636,69.6666031743716,-7.13385692051539,-20.9819321191629,-0.0386273622927974,58.1439458517006 -00:01:04.0809,69.6666605295692,-7.1480881101822,-21.0237885593594,-0.0386696261127981,58.1202617064155 -00:01:04.1043,69.6667378490161,-7.13232625976182,-20.9774301757701,-0.0386310703398134,58.0883264860644 -00:01:04.1277,69.6668149307522,-7.09937187485682,-20.8805055142848,-0.0385454231067618,58.0564371379926 -00:01:04.1512,69.6668917188451,-7.07298981417448,-20.8029112181602,-0.0384776844794039,58.0246053749617 -00:01:04.1746,69.6669683286403,-7.06449113048576,-20.777915089664,-0.0384588725014955,57.9928071458522 -00:01:04.2047,69.6670671565242,-7.07309130602361,-20.8032097235989,-0.0384882263774405,57.9517817734472 -00:01:04.2349,69.6671661086682,-7.08626004154106,-20.8419412986502,-0.0385301809174794,57.9107242033559 -00:01:04.2651,69.6672651612884,-7.09045498543217,-20.8542793689181,-0.03854757848966,57.8696393611966 -00:01:04.3019,69.6673856811507,-7.08300038326842,-20.8323540684365,-0.0385342916121857,57.8196351980229 -00:01:04.3472,69.6675343133619,-7.07105087394656,-20.797208452784,-0.038510333300108,57.7579172114053 -00:01:04.3926,69.6676827917985,-7.06588281865169,-20.782008290152,-0.0385050370008204,57.6962172088373 -00:01:04.4508,69.6678732596837,-7.06536045886185,-20.780471937829,-0.0385151331380532,57.6170314574993 -00:01:04.5000,69.6680339497279,-7.06364242503904,-20.7754188971736,-0.0385202002165507,57.5501972253066 -00:01:04.5087,69.6680627409411,-7.07031566704119,-20.7950460795329,-0.038540396229686,57.5382233260265 -00:01:04.5175,69.6680915810105,-7.08689609143509,-20.8438120336326,-0.0385879756132079,57.5262385808056 -00:01:04.5263,69.6681205018258,-7.11060802574921,-20.9135530169094,-0.0386552899591212,57.5142362620136 -00:01:04.5374,69.6681570052899,-7.14331135302182,-21.0097392735936,-0.0387479686332548,57.499115395504 -00:01:04.5541,69.6682121945816,-7.18444556814529,-21.1307222592509,-0.0388652107935588,57.4763087293869 -00:01:04.5707,69.6682676228451,-7.20750283362785,-21.1985377459643,-0.0389325495035033,57.4534495781794 -00:01:04.5922,69.6683392045907,-7.2080995383213,-21.2002927597685,-0.0389388086573266,57.4239467323061 -00:01:04.6136,69.6684106984752,-7.18743693097614,-21.1395203852239,-0.0388861884864473,57.3944589689663 -00:01:04.6351,69.6684819845565,-7.16246532277528,-21.0660744787508,-0.0388215760196249,57.3650116434969 -00:01:04.6565,69.6685530787717,-7.14623543026259,-21.0183395007723,-0.0387811410276186,57.3356014161227 -00:01:04.6830,69.6686407816219,-7.14317433540846,-21.0093362806131,-0.0387782760716896,57.2992935643527 -00:01:04.7190,69.6687597650371,-7.15310204861316,-21.0385354370975,-0.0388135072672904,57.2500380439734 -00:01:04.7549,69.6688788605065,-7.16084286396501,-21.0613025410736,-0.0388427534727689,57.2007489920708 -00:01:04.7909,69.6689979791118,-7.15773803324055,-21.0521706860016,-0.0388419055367781,57.1514451947119 -00:01:04.8418,69.6691665136635,-7.14614503418187,-21.0180736299467,-0.0388206975323682,57.0816377335193 -00:01:04.8927,69.6693348569297,-7.1385315345701,-20.9956809840297,-0.0388105823531728,57.0118509949501 -00:01:04.9436,69.6695030942104,-7.13668303537839,-20.9902442217012,-0.0388165904895428,56.9420667659261 -00:01:05.0000,69.6696892395117,-7.13448908447924,-20.9837914249389,-0.0388229046433756,56.8648166079356 -00:01:05.0118,69.6697282462568,-7.14336409182745,-21.0098943877278,-0.0388503498630246,56.8486302364415 -00:01:05.0236,69.6697673333481,-7.1633707980758,-21.0687376413994,-0.0389089673190523,56.8324256201393 -00:01:05.0354,69.6698065417031,-7.18898888381703,-21.144084952403,-0.0389833378134044,56.816194009552 -00:01:05.0502,69.6698559051879,-7.21841787953255,-21.2306408221545,-0.0390691285915534,56.7957934586888 -00:01:05.0698,69.6699216241027,-7.24132712714914,-21.2980209622033,-0.0391378594703915,56.7686758644266 -00:01:05.0940,69.6700026424073,-7.24212365989028,-21.3003637055596,-0.0391457383191931,56.7352646960145 -00:01:05.1181,69.6700835745039,-7.22361640355347,-21.2459305986867,-0.0390994780933384,56.7018671653525 -00:01:05.1423,69.6701643061329,-7.20253124159576,-21.1839154164581,-0.0390459327048979,56.6685077319297 -00:01:05.1665,69.6702448673588,-7.19079836397151,-21.1494069528574,-0.0390185984370583,56.6351799856842 -00:01:05.1973,69.6703475193857,-7.19111484709723,-21.1503377855801,-0.0390266534266118,56.5926915894184 -00:01:05.2358,69.6704757817534,-7.19911347352583,-21.1738631574289,-0.0390581540690287,56.5396034980195 -00:01:05.2743,69.6706041063577,-7.20144577594015,-21.1807228704122,-0.0390737911981521,56.4864897571239 -00:01:05.3128,69.6707323913336,-7.19522373395845,-21.1624227469366,-0.0390653726515449,56.4333721845947 -00:01:05.3725,69.6709311014071,-7.18425804572798,-21.1301707227294,-0.03904862056738,56.351026365195 -00:01:05.4322,69.6711296110695,-7.17870689681671,-21.1138438141668,-0.0390471956842358,56.2686937146631 -00:01:05.5000,69.6713546584869,-7.17530713022022,-21.1038445006477,-0.0390538666612655,56.1752884383462 -00:01:05.5181,69.6714149510859,-7.18810848800395,-21.1414955529528,-0.0390945294537147,56.1502667669436 -00:01:05.5331,69.6714649851468,-7.20809436147372,-21.2002775337462,-0.0391548476457628,56.1295223606364 -00:01:05.5481,69.6715151547588,-7.22884683744982,-21.2613142277936,-0.0392173996305651,56.1087466828917 -00:01:05.5703,69.6715896307255,-7.2471726693237,-21.315213733305,-0.0392749320142149,56.0779390913987 -00:01:05.5974,69.6716803932933,-7.24693765290303,-21.3145225085383,-0.0392810517286642,56.0404081848496 -00:01:05.6245,69.6717710696385,-7.23141844106961,-21.2688777678518,-0.0392437553078394,56.0028894893593 -00:01:05.6515,69.67186156818,-7.21524156215776,-21.2212987122287,-0.0392045473271669,55.9654028604564 -00:01:05.6786,69.6719519297909,-7.20770512188003,-21.1991327114119,-0.0391898844971227,55.9279394515894 -00:01:05.7161,69.6720771644577,-7.20928404596205,-21.2037766057708,-0.0392038057122309,55.8759979414821 -00:01:05.7536,69.672202426831,-7.2134068060247,-21.2159023706609,-0.0392250379112032,55.8240378681516 -00:01:05.7990,69.6723538762357,-7.21102527619303,-21.208897871156,-0.0392297771147596,55.7611975542797 -00:01:05.8589,69.6725537703378,-7.20134104141563,-21.180414827693,-0.0392174231334089,55.6781950048013 -00:01:05.9188,69.6727534509448,-7.19352368107328,-21.157422591392,-0.0392104450723616,55.5952065429532 -00:01:06.0000,69.6730235242557,-7.18749505934995,-21.1396913510293,-0.0392141440983848,55.4828615220335 -00:01:06.0550,69.6732070292379,-7.21198142749878,-21.2117100808788,-0.0392988649515362,55.4065504457354 -00:01:06.0836,69.6733025032482,-7.22398731550272,-21.2470215161845,-0.0393409494218636,55.3668745935941 -00:01:06.1121,69.6733980391699,-7.22316406396816,-21.2446001881417,-0.0393461966758408,55.3271775107803 -00:01:06.1507,69.6735269644002,-7.21021025110172,-21.2065007385345,-0.0393192069182394,55.273570623503 -00:01:06.1893,69.67365569867,-7.19840481367195,-21.171778863741,-0.0392954995557704,55.2199916537727 -00:01:06.2279,69.6737843096415,-7.19481958785149,-21.1612340819161,-0.0392954986640325,55.1664257124967 -00:01:06.2865,69.6739794122947,-7.19457391017736,-21.1605115005216,-0.0393105733428802,55.0851276500598 -00:01:06.3451,69.6741744274533,-7.1907482883106,-21.1492596715017,-0.0393154002356538,55.003816113646 -00:01:06.4196,69.6744225721402,-7.18120990544513,-21.1212056042504,-0.0393081324116186,54.9002580789729 -00:01:06.5000,69.6746893888778,-7.17230109667023,-21.0950032255007,-0.0393043505107886,54.7887853161672 -00:01:06.6000,69.675021520901,-7.1732855883103,-21.0978987891479,-0.0393350126263207,54.6499109213225 -00:01:06.6999,69.6753533752863,-7.16470510604082,-21.0726620765907,-0.039338092146177,54.5109995380659 -00:01:06.7999,69.6756847344612,-7.15122664303552,-21.0330195383398,-0.0393270346091967,54.3720988726667 -00:01:06.8999,69.6760155945668,-7.14117443914457,-21.0034542327782,-0.0393261807394359,54.233209074353 -00:01:07.0000,69.676346008995,-7.13233054444144,-20.9774427777689,-0.0393290808694979,54.0943174925369 -00:01:07.1000,69.6766754308463,-7.10282331977715,-20.890656822874,-0.0392711506569986,53.9555466840641 -00:01:07.1609,69.6768757916165,-7.09369548901685,-20.8638102618143,-0.0392619780204422,53.8710041632769 -00:01:07.2219,69.6770760154207,-7.09333348418096,-20.8627455417087,-0.0392788197428956,53.7864540355995 -00:01:07.2828,69.6772761458511,-7.0898825766821,-20.8525958137709,-0.0392866280181714,53.7018862912971 -00:01:07.3604,69.6775306372459,-7.07990647867056,-20.823254349031,-0.0392801082111865,53.5942414581506 -00:01:07.4604,69.6778581464367,-7.06841175658957,-20.7894463429105,-0.0392759003871142,53.4555267887047 -00:01:07.5000,69.6779874621716,-7.06485768423353,-20.7789931889221,-0.0392772381110126,53.4007000467378 -00:01:07.5310,69.6780887799135,-7.04258041436369,-20.713471806952,-0.0392200984727919,53.3576897228217 -00:01:07.5538,69.6781629620468,-7.01983698822622,-20.6465793771359,-0.0391590035456903,53.3261485808239 -00:01:07.5766,69.6782369558263,-7.00419510356923,-20.6005738340271,-0.0391190747440521,53.2946448677733 -00:01:07.6057,69.6783312825747,-7.00031308578879,-20.5891561346729,-0.0391161797239463,53.2544525914714 -00:01:07.6426,69.6784509937164,-7.00778106460336,-20.6111207782452,-0.0391496528732617,53.203435910631 -00:01:07.6795,69.6785707809252,-7.01290484747364,-20.6261907278637,-0.03917619792298,53.1523873013938 -00:01:07.7164,69.6786905630297,-7.00867772342488,-20.6137580100732,-0.0391747586025497,53.1013252561438 -00:01:07.7721,69.6788710341886,-6.99669341375094,-20.5785100404439,-0.039155770354969,53.0243247484098 -00:01:07.8277,69.6790512835038,-6.98881149361838,-20.555327922407,-0.0391491329004728,52.9473416089444 -00:01:07.8956,69.679270829773,-6.98451731155741,-20.5426979751688,-0.0391571255559746,52.8534928136659 -00:01:07.9894,69.6795739079262,-6.97631058907553,-20.5185605561045,-0.0391614992424299,52.7237936010376 -00:01:08.0000,69.6796080202055,-6.97511271175396,-20.5150373875116,-0.0391611768871853,52.7091850273331 -00:01:08.0150,69.6796565616034,-6.96223654048714,-20.4771662955504,-0.0391269232699505,52.6883839415645 -00:01:08.0300,69.6797049750153,-6.93829347265945,-20.4067455078219,-0.039059145603079,52.6676099066948 -00:01:08.0451,69.6797532188972,-6.91166418788013,-20.3284240820004,-0.0389831811745438,52.6468725371073 -00:01:08.0639,69.6798132229832,-6.88703883480452,-20.2559965729545,-0.0389143689829427,52.6210342836421 -00:01:08.0872,69.679887510648,-6.87623607286002,-20.2242237437059,-0.0388887620144898,52.589004473132 -00:01:08.1193,69.6799898878413,-6.88513126005355,-20.250386058981,-0.0389255819681454,52.5448526842279 -00:01:08.1514,69.6800924045305,-6.89968546463665,-20.293192543049,-0.0389796791084602,52.5006573718785 -00:01:08.1836,69.6801950287221,-6.90321940921733,-20.303586497698,-0.0390004107467374,52.4564258670548 -00:01:08.2157,69.6802976186703,-6.89492202321274,-20.2791824212139,-0.038985213468451,52.4121909636899 -00:01:08.2576,69.6804311991416,-6.88166303666159,-20.2401854019459,-0.0389579531914078,52.354538741453 -00:01:08.2995,69.6805646117502,-6.87516103622068,-20.2210618712373,-0.0389512591025527,52.2969061198479 -00:01:08.3527,69.6807339724115,-6.87388866932296,-20.2173196156558,-0.0389641126895804,52.2236974076695 -00:01:08.4180,69.680941718749,-6.87008182344782,-20.2061230101407,-0.0389731519403072,52.1338311847034 -00:01:08.5000,69.6812022200617,-6.8600009953506,-20.1764735157371,-0.0389684116612821,52.0210207117224 -00:01:08.5118,69.6812399653129,-6.84829739919858,-20.1420511741135,-0.038936333568281,52.004656565314 -00:01:08.5237,69.6812776130892,-6.82507098837805,-20.0737382011119,-0.0388688958744402,51.9883136235332 -00:01:08.5356,69.6813151210452,-6.79621584294622,-19.9888701263124,-0.03878414909411,51.9720018083306 -00:01:08.5501,69.6813604862947,-6.7639911509114,-19.8940916203276,-0.0386898076128021,51.9522308916049 -00:01:08.5690,69.6814195575082,-6.73749595067062,-19.8161645607959,-0.0386143564891374,51.9264337478417 -00:01:08.5922,69.681491957853,-6.73146442414603,-19.7984247769001,-0.0386030155831398,51.8947773057541 -00:01:08.6154,69.6815643858199,-6.74474249110288,-19.8374779150085,-0.0386510221181156,51.8631084731246 -00:01:08.6386,69.6816369567863,-6.76162780030471,-19.8871405891315,-0.0387102057835933,51.8314001695594 -00:01:08.6618,69.6817096519576,-6.77023046733016,-19.9124425509711,-0.0387439936386943,51.7996567510967 -00:01:08.6909,69.6818006021588,-6.76605039183352,-19.9001482112751,-0.0387403147269045,51.75993803239 -00:01:08.7288,69.6819192820734,-6.75093130882552,-19.8556803200751,-0.0387057416730918,51.7080632229288 -00:01:08.7667,69.6820377634854,-6.73992517104319,-19.8233093265976,-0.0386838131844896,51.6562190012904 -00:01:08.8047,69.6821561393578,-6.73789725987475,-19.8173448819846,-0.0386896043244894,51.6043834807096 -00:01:08.8677,69.6823527274335,-6.73762721893991,-19.8165506439409,-0.0387089076592338,51.5182541526479 -00:01:08.9307,69.68254919379,-6.73203125587724,-19.8000919290507,-0.0387118461261159,51.4321085960703 -00:01:09.0000,69.6827648201408,-6.72222748821537,-19.7712573182805,-0.0387038199531222,51.3374607521928 -00:01:09.0092,69.682793485942,-6.71306106561631,-19.7442972518127,-0.0386783305026647,51.3248656714597 -00:01:09.0184,69.6828220892326,-6.69366952165394,-19.6872632989822,-0.0386210523266618,51.3122844350277 -00:01:09.0276,69.6828505963976,-6.66729644907494,-19.6096954384557,-0.0385420464184755,51.2997250199384 -00:01:09.0388,69.682885217612,-6.63304086598392,-19.5089437234821,-0.0384391407819427,51.284439012722 -00:01:09.0552,69.6829353855196,-6.59199914274353,-19.3882327727751,-0.0383166820356115,51.2622295991203 -00:01:09.0716,69.6829853165477,-6.56873130150986,-19.3197979456172,-0.0382494114862508,51.2400734081882 -00:01:09.0932,69.6830508682585,-6.56607316343313,-19.3119798924504,-0.0382478283378691,51.2109569036762 -00:01:09.1147,69.6831164795642,-6.58314213355655,-19.3621827457546,-0.0383076962259117,51.1818211264792 -00:01:09.1363,69.6831822579752,-6.60328825154895,-19.4214360339675,-0.0383772477020412,51.1526404990312 -00:01:09.1578,69.6832481797706,-6.61427892517218,-19.4537615446241,-0.0384183513646132,51.1234206043606 -00:01:09.1843,69.6833292647274,-6.61146916314121,-19.4454975386506,-0.0384180296110436,51.0874812927472 -00:01:09.2188,69.6834347543553,-6.59551776105614,-19.3985816501651,-0.0383792303927751,51.040684017972 -00:01:09.2533,69.6835400396141,-6.5821029886993,-19.3591264373509,-0.0383483046284557,50.9939220413556 -00:01:09.2879,69.6836452032903,-6.57872243937042,-19.3491836452071,-0.0383487417957772,50.9471756341085 -00:01:09.3377,69.6837970213395,-6.58074011356185,-19.3551179810643,-0.0383710376871228,50.879662427926 -00:01:09.3875,69.6839488117547,-6.57913424891757,-19.3503948497576,-0.0383820760016158,50.812127616432 -00:01:09.4373,69.6841004942162,-6.57188919157364,-19.3290858575695,-0.0383754713979191,50.7445903169875 -00:01:09.5000,69.6842908347663,-6.56295295788483,-19.3028028173083,-0.0383677338939257,50.6597555334918 -00:01:09.5074,69.6843134616461,-6.55589312720186,-19.2820386094172,-0.0383479365720351,50.6496617839824 -00:01:09.5149,69.6843360476366,-6.54001023477783,-19.2353242199348,-0.0383003471500929,50.6395772166295 -00:01:09.5223,69.6843585672538,-6.51701467971756,-19.1676902344634,-0.0382303379413079,50.6295079576499 -00:01:09.5314,69.6843859251877,-6.48443228820039,-19.0718596711776,-0.0381306285871683,50.6172504773059 -00:01:09.5463,69.6844303637358,-6.43394098208539,-18.9233558296629,-0.0379762680923458,50.5972797242856 -00:01:09.5611,69.6844745082284,-6.39655107970665,-18.813385528549,-0.0378630829687813,50.577377194023 -00:01:09.5760,69.684518466899,-6.37876618528063,-18.7610770155313,-0.0378116166599219,50.5575169107711 -00:01:09.5982,69.6845842658947,-6.38321620844686,-18.7741653189613,-0.0378325259928557,50.5277734136327 -00:01:09.6205,69.6846501937825,-6.40726786016963,-18.8449054710871,-0.0379153521835721,50.4979934505022 -00:01:09.6428,69.684716339171,-6.43002886719477,-18.9118496093964,-0.0379942322768124,50.4681556290295 -00:01:09.6650,69.6847826355269,-6.43894041519348,-18.9380600446867,-0.0380294566792629,50.4382759093466 -00:01:09.6919,69.6848626891158,-6.43137562340168,-18.9158106570638,-0.038014094614743,50.4021893857836 -00:01:09.7188,69.684942612404,-6.41529667142305,-18.8685196218325,-0.0379717675567564,50.3661261999728 -00:01:09.7457,69.6850223757361,-6.4029141746599,-18.8321005137056,-0.0379410948563991,50.3300935286721 -00:01:09.7784,69.685119361697,-6.3990902671358,-18.82085372687,-0.037939376059816,50.2862461355345 -00:01:09.8281,69.6852666398171,-6.40226423125969,-18.8301889154697,-0.0379653160280175,50.2196362753293 -00:01:09.8778,69.6854139121548,-6.40191228418554,-18.8291537770163,-0.0379801701059341,50.1529998623833 -00:01:09.9275,69.6855610880277,-6.39467474402011,-18.8078668941768,-0.0379731911589669,50.0863587743881 -00:01:10.0000,69.6857755290567,-6.3842259542563,-18.7771351595774,-0.0379634047798248,49.9891520703855 -00:01:10.0024,69.6857826502762,-6.38604150209018,-18.7824750061476,-0.0379699799851955,49.9859220939253 -00:01:10.0048,69.6857897760317,-6.39221259977609,-18.8006252934591,-0.0379904523858438,49.9826909464628 -00:01:10.0077,69.6857984646514,-6.4066102276709,-18.8429712578556,-0.0380373491435095,49.9787540326841 -00:01:10.0106,69.6858071774469,-6.42798320194545,-18.9058329468984,-0.0381065179409348,49.9748111344568 -00:01:10.0147,69.6858193745553,-6.46718796760064,-19.0211410811783,-0.0382330100738991,49.9693033866943 -00:01:10.0236,69.6858460614137,-6.57571908323301,-19.340350244803,-0.0385825888733027,49.9573163704043 -00:01:10.0324,69.6858732237057,-6.70209498248294,-19.7120440661263,-0.0389895443124489,49.9452125365898 -00:01:10.0412,69.6859008917197,-6.82722580118144,-20.0800758858278,-0.0393929384675941,49.9329843870045 -00:01:10.0501,69.685929032109,-6.9360412723258,-20.4001213891935,-0.0397445285808476,49.9206399384743 -00:01:10.0589,69.6859575606751,-7.01857700947893,-20.642873557291,-0.0400123005898323,49.9081996412117 -00:01:10.0707,69.6859961835587,-7.08072403666038,-20.8256589313541,-0.0402162244535201,49.8914293809749 -00:01:10.0826,69.6860350049364,-7.09050511399296,-20.8544268058616,-0.0402524785514035,49.8746085868222 -00:01:10.0944,69.6860737744322,-7.05891567123948,-20.7615166801161,-0.0401561038848788,49.8577984413445 -00:01:10.1063,69.6861123119064,-7.00230371441219,-20.5950109247417,-0.0399794145887377,49.8410430120154 -00:01:10.1181,69.6861505269401,-6.93797461203723,-20.4058076824624,-0.0397778678480541,49.8243644520409 -00:01:10.1299,69.6861884148621,-6.88049258837268,-20.2367429069785,-0.0395981704980421,49.8077639483895 -00:01:10.1418,69.6862260363515,-6.83941758814729,-20.1159340827861,-0.0394710073913284,49.7912266962796 -00:01:10.1578,69.686276549216,-6.81549155670306,-20.0455634020678,-0.0394003862975233,49.7689751048769 -00:01:10.1774,69.6863386173173,-6.82552690016655,-20.0750791181369,-0.0394401738889091,49.7416173758665 -00:01:10.1971,69.6864008597584,-6.85837481620597,-20.1716906358999,-0.0395533390676958,49.7142116364492 -00:01:10.2167,69.6864633751609,-6.89062456947304,-20.2665428513913,-0.0396647516982446,49.6867336408434 -00:01:10.2363,69.6865260994773,-6.90709329729161,-20.3149802861518,-0.0397255448297271,49.6591990123598 -00:01:10.2560,69.6865888874307,-6.90461494999501,-20.3076910293971,-0.039725417301172,49.6316433461412 -00:01:10.2823,69.6866727139735,-6.88478674837583,-20.2493727893407,-0.0396720401374251,49.5948203249203 -00:01:10.3085,69.6867563132452,-6.86332602109308,-20.1862530032149,-0.0396133214002765,49.5580434613477 -00:01:10.3348,69.6868397318381,-6.85251273381472,-20.1544492171021,-0.0395888764170447,49.5213013408116 -00:01:10.3674,69.6869432481887,-6.8533921877612,-20.1570358463565,-0.0396046970476949,49.4756798466001 -00:01:10.4000,69.687046793008,-6.85884988068223,-20.1730878843595,-0.0396353773734557,49.4300363273324 -00:01:10.4327,69.6871503642503,-6.85911693205503,-20.1738733295736,-0.03964934702043,49.3843712320779 -00:01:10.4764,69.6872891719787,-6.8505322101986,-20.1486241476429,-0.0396391802641682,49.3231286862881 -00:01:10.5000,69.6873638304581,-6.84398028811347,-20.129353788569,-0.0396274516852494,49.2901640793733 -00:01:10.5016,69.6873691213487,-6.84544452133078,-20.1336603568552,-0.039632874102184,49.287827322658 -00:01:10.5033,69.6873744150608,-6.85112978578919,-20.1503817229094,-0.0396519855229354,49.285489828114 -00:01:10.5055,69.6873814749011,-6.86714904390884,-20.1974971879672,-0.0397048399043624,49.2823746722066 -00:01:10.5077,69.6873885561193,-6.89268001711829,-20.272588285642,-0.0397885594507563,49.2792541559418 -00:01:10.5100,69.6873956679171,-6.92687307266504,-20.3731560960736,-0.039900402997569,49.2761260009262 -00:01:10.5141,69.6874088979193,-7.00843255887874,-20.6130369378786,-0.0401667956229271,49.2703281501529 -00:01:10.5214,69.6874330029385,-7.19680480282928,-21.1670729494979,-0.040781701197459,49.2598528844414 -00:01:10.5287,69.6874577986323,-7.41925574255369,-21.8213404192755,-0.041508176612542,49.2492055725366 -00:01:10.5360,69.6874833533309,-7.65020923295234,-22.5006153910363,-0.0422633140658524,49.2383690436367 -00:01:10.5434,69.6875096616018,-7.86797861070001,-23.1411135608824,-0.0429765366290379,49.2273443995936 -00:01:10.5507,69.6875366533819,-8.0560099194479,-23.6941468219056,-0.0435937169626819,49.2161488167427 -00:01:10.5580,69.6875642112429,-8.20328234277456,-24.1273010081605,-0.0440786050515045,49.2048113083698 -00:01:10.5680,69.6876023632922,-8.32933446741617,-24.498042551224,-0.0444963453346098,49.1892131354414 -00:01:10.5780,69.6876409055867,-8.37208935326624,-24.6237922154889,-0.0446422828991197,49.1735155829448 -00:01:10.5879,69.6876794885668,-8.34355852298143,-24.5398780087689,-0.0445552512515964,49.15780571411 -00:01:10.5979,69.6877178308024,-8.26344476921055,-24.3042493212075,-0.0442994779752144,49.1421537066116 -00:01:10.6079,69.687755747445,-8.15479788961757,-23.9846996753458,-0.04395028057409,49.1266056968701 -00:01:10.6179,69.6877931568019,-8.03986942523839,-23.6466747801129,-0.0435804113904921,49.1111821062386 -00:01:10.6279,69.6878300697992,-7.93695018481062,-23.343971131796,-0.0432496695546254,49.0958802585353 -00:01:10.6378,69.6878665678796,-7.85849493616055,-23.1132204004722,-0.0429987738316026,49.0806798906079 -00:01:10.6507,69.6879133562955,-7.80214078802286,-22.9474729059496,-0.0428216167393363,49.0611258179498 -00:01:10.6669,69.6879717140883,-7.79616289848761,-22.9298908779047,-0.0428108821016577,49.0366952240696 -00:01:10.6830,69.6880301955644,-7.83996781315082,-23.0587288622083,-0.0429631131873278,49.0122286842811 -00:01:10.6992,69.688089049574,-7.90270898892378,-23.2432617321288,-0.0431776061370425,48.9876639857154 -00:01:10.7153,69.6881483200767,-7.95679098543549,-23.4023264277515,-0.0433640308909585,48.9629900116384 -00:01:10.7315,69.6882078916841,-7.98579692350095,-23.4876380102969,-0.0434684564970817,48.9382354833905 -00:01:10.7476,69.6882675756638,-7.98657032599795,-23.4899127235234,-0.0434803469037797,48.913447536956 -00:01:10.7682,69.6883433277769,-7.96030561146585,-23.4126635631348,-0.0434059855791621,48.8819586273509 -00:01:10.7887,69.6884188038149,-7.92394301338686,-23.3057147452555,-0.0432983352099446,48.8505303135791 -00:01:10.8092,69.6884939936948,-7.89619442685144,-23.2241012554454,-0.0432188636632875,48.8191651935492 -00:01:10.8297,69.6885690058617,-7.88527940819488,-23.1919982593967,-0.043194672849338,48.787836133614 -00:01:10.8602,69.688680383527,-7.89075551064827,-23.2081044430831,-0.0432301317437341,48.7412981497424 -00:01:10.8907,69.6887918519268,-7.90240868113968,-23.2423784739402,-0.0432860657575719,48.6947185148938 -00:01:10.9212,69.6889033905777,-7.90423321319239,-23.2477447446835,-0.0433097122893807,48.6481022898659 -00:01:10.9517,69.6890148715695,-7.89434896750901,-23.21867343385,-0.0432947492769643,48.6014816016886 -00:01:10.9955,69.6891745946937,-7.8763300502019,-23.1656766182409,-0.0432605677231431,48.5346087587684 -00:01:11.0000,69.6891909805701,-7.87439712450572,-23.1599915426639,-0.0432567810783021,48.5277430312523 -00:01:11.0016,69.689197151599,-7.87560205227635,-23.1635354478716,-0.0432617504192402,48.5251571709935 -00:01:11.0033,69.6892033252719,-7.88087679147223,-23.179049386683,-0.0432801878233637,48.5225705845203 -00:01:11.0057,69.6892120241485,-7.89714232191926,-23.2268891821155,-0.0433354035625741,48.5189279849074 -00:01:11.0081,69.6892207465333,-7.92349288496665,-23.3043908381372,-0.0434240157893371,48.5152793330157 -00:01:11.0105,69.6892295028066,-7.95894869428248,-23.4086726302426,-0.0435427995230635,48.5116220058049 -00:01:11.0150,69.6892462531212,-8.04616565946542,-23.6651931160748,-0.0438343464380974,48.5046470865614 -00:01:11.0229,69.6892761804286,-8.24254607049986,-24.2427825602937,-0.0444901201354741,48.4922709626519 -00:01:11.0309,69.6893068784261,-8.47019640793431,-24.9123423762774,-0.0452506103899377,48.4796984497202 -00:01:11.0388,69.6893384048143,-8.70017381998613,-25.588746529371,-0.0460199981430232,48.4669146552517 -00:01:11.0468,69.6893710629804,-8.91070698622623,-26.2079617241948,-0.0467259474000959,48.4537931835174 -00:01:11.0548,69.6894044244014,-9.08207437576893,-26.7119834581439,-0.0473025152090892,48.4404915532554 -00:01:11.0645,69.6894455250908,-9.2230922245737,-27.1267418369815,-0.0477800750961247,48.42420160082 -00:01:11.0772,69.6894996256117,-9.29621451423834,-27.3418073948187,-0.0480342279578664,48.4028404078322 -00:01:11.0875,69.689544009386,-9.27366144198152,-27.2754748293574,-0.0479675065365354,48.3853329215071 -00:01:11.0978,69.6895881692866,-9.19751236725528,-27.0515069625155,-0.0477218546360471,48.3678793295975 -00:01:11.1082,69.6896319040585,-9.091522952941,-26.739773391003,-0.047376462937791,48.3505308984437 -00:01:11.1185,69.6896751253837,-8.97888771316393,-26.4084932740116,-0.0470087184273487,48.3333101705097 -00:01:11.1288,69.6897178447161,-8.87861717702227,-26.1135799324184,-0.0466820575512384,48.3162142957325 -00:01:11.1392,69.6897601486324,-8.80343946640645,-25.8924690188425,-0.0464389638197336,48.2992212990298 -00:01:11.1529,69.6898160937037,-8.75095841744097,-25.7381129924734,-0.0462740076801301,48.2766867728369 -00:01:11.1699,69.6898850017406,-8.75150823894436,-25.7397301145422,-0.0462883846614909,48.2488956417767 -00:01:11.1869,69.6899540767052,-8.79891652122033,-25.8791662388833,-0.0464594259106269,48.2210543805812 -00:01:11.2039,69.6900235487996,-8.8598238304499,-26.0583053836762,-0.0466759236824204,48.1931041926903 -00:01:11.2209,69.6900934236421,-8.90661170596513,-26.1959167822504,-0.0468455209977426,48.1650434800366 -00:01:11.2379,69.6901635482156,-8.9252674162578,-26.2507865184053,-0.0469211377239876,48.136911167002 -00:01:11.2599,69.6902543303868,-8.91132759607591,-26.2097870472821,-0.0468914640950999,48.100481979803 -00:01:11.2819,69.6903448787599,-8.8748090413635,-26.102379533422,-0.0467859766403129,48.0640994016323 -00:01:11.3039,69.6904350894915,-8.83970456113475,-25.999131062161,-0.046685063280629,48.0277900773497 -00:01:11.3259,69.6905250384396,-8.82066468883946,-25.9431314377631,-0.0466379658805804,47.9915346722617 -00:01:11.3539,69.6906392760709,-8.8193290220186,-25.9392030059371,-0.0466549188283344,47.9454520532016 -00:01:11.3818,69.6907535432177,-8.82862226725517,-25.9665360801623,-0.0467077275564876,47.8993406012767 -00:01:11.4098,69.6908678755562,-8.83292579173648,-25.9791935051073,-0.0467438676322261,47.8531910791484 -00:01:11.4446,69.6910103058702,-8.82386511723485,-25.9525444624555,-0.0467403719568355,47.7956623042309 -00:01:11.5000,69.6912358924078,-8.79957666337454,-25.8811078334545,-0.0467013469134056,47.7044162993401 -00:01:11.5018,69.6912434894184,-8.80073897833011,-25.8845264068533,-0.0467067289051474,47.701340816556 -00:01:11.5037,69.6912510891548,-8.80659559979501,-25.901751764103,-0.0467279869883664,47.6982645344684 -00:01:11.5062,69.6912614627063,-8.82400845338755,-25.9529660393751,-0.0467888648317956,47.6940673625758 -00:01:11.5088,69.691271862811,-8.85186459074686,-26.0348958551378,-0.0468850904668481,47.6898631603541 -00:01:11.5118,69.6912844108212,-8.89735694665867,-26.1686969019373,-0.0470414352527908,47.6847980553406 -00:01:11.5178,69.6913091404948,-9.0144944201804,-26.5132188828835,-0.0474427826089521,47.6748484494079 -00:01:11.5265,69.6913458612234,-9.2276341595011,-27.1401004691209,-0.0481722593761002,47.6601690442212 -00:01:11.5352,69.6913834677675,-9.46103603555644,-27.826576575166,-0.0489717230955251,47.645258225214 -00:01:11.5439,69.6914219761863,-9.682798530743,-28.4788192080676,-0.0497330239636666,47.6301114603765 -00:01:11.5525,69.6914612961453,-9.86884979330988,-29.0260288038526,-0.0503741175851909,47.6147517942469 -00:01:11.5612,69.6915012585852,-10.0042505007701,-29.4242661787356,-0.0508437223904857,47.5992227852694 -00:01:11.5726,69.6915543022655,-10.0968636093373,-29.6966576745214,-0.0511709668266618,47.5786814523215 -00:01:11.5841,69.6916076051477,-10.1009058782577,-29.7085467007579,-0.051196615064294,47.5580680345172 -00:01:11.5955,69.6916607628742,-10.0367507797996,-29.5198552347046,-0.0509896519548932,47.5374876255502 -00:01:11.6069,69.6917134912385,-9.93235809586056,-29.2128179290016,-0.0506452461820221,47.5170141969115 -00:01:11.6183,69.6917656521952,-9.81648756575066,-28.8720222522078,-0.0502614452748892,47.4966837495895 -00:01:11.6297,69.691817244746,-9.71311258347412,-28.5679781866886,-0.0499200183062499,47.4764966421277 -00:01:11.6411,69.6918683718725,-9.63803193658382,-28.3471527546583,-0.0496748825408306,47.4564261732519 -00:01:11.6557,69.6919332228007,-9.59228672381991,-28.212608011235,-0.0495326487030098,47.4309098952135 -00:01:11.6734,69.6920121602806,-9.60019546225997,-28.235869006647,-0.04957650943849,47.3998220888887 -00:01:11.6912,69.6920913082851,-9.64975130327482,-28.3816214802201,-0.0497628295097073,47.3686687677136 -00:01:11.7089,69.6921708616815,-9.70636417587555,-28.5481299290457,-0.0499736661099442,47.3373989841704 -00:01:11.7267,69.692250782025,-9.74393483079834,-28.6586318552892,-0.0501197035099794,47.3060225763678 -00:01:11.7444,69.6923308846443,-9.75191134782226,-28.6820921994773,-0.050164585413329,47.2745876164743 -00:01:11.7704,69.6924479405795,-9.72459478898625,-28.6017493793713,-0.0500966314344004,47.2286141336046 -00:01:11.7964,69.6925646107088,-9.68124918911802,-28.4742623209354,-0.0499734903445836,47.1827181155392 -00:01:11.8224,69.692680872286,-9.65041860552225,-28.383584133889,-0.0498930977101848,47.136905648025 -00:01:11.8483,69.69279690453,-9.64159894948029,-28.3576439690597,-0.0498882619079377,47.0911298709942 -00:01:11.8875,69.6929716902125,-9.64712492041658,-28.3738968247546,-0.0499458373239427,47.0221265656921 -00:01:11.9266,69.6931464814841,-9.64842281238873,-28.3777141540845,-0.0499890835175913,46.9530683229515 -00:01:11.9658,69.6933211329064,-9.63418695828184,-28.3358439949466,-0.0499788365802087,46.8839932581824 -00:01:12.0000,69.6934734965779,-9.61531481953549,-28.2803377045162,-0.0499476237789035,46.8236570682038 -00:01:12.0020,69.69348266051,-9.61661525959268,-28.2841625282138,-0.0499541753586653,46.8200259024025 -00:01:12.0041,69.6934918281479,-9.62326874831499,-28.3037316126911,-0.0499792571238854,46.8163936086203 -00:01:12.0068,69.6935039516876,-9.64206040238264,-28.3590011834783,-0.0500470266242142,46.8115921170781 -00:01:12.0095,69.6935161055501,-9.67161166168144,-28.4459166520043,-0.0501520779654178,46.8067823553262 -00:01:12.0130,69.6935316795693,-9.72255581722049,-28.5957524035897,-0.050332036131976,46.8006272917789 -00:01:12.0205,69.6935656550804,-9.8676018080825,-29.0223582590662,-0.0508424608540066,46.7872439601791 -00:01:12.0300,69.6936095609664,-10.0912986511931,-29.6802901505678,-0.051628785905068,46.7700508550566 -00:01:12.0395,69.6936544506318,-10.3229709327196,-30.3616792138812,-0.0524443434622758,46.7525936799376 -00:01:12.0490,69.6937002859971,-10.5285270528394,-30.966256037763,-0.0531705881734327,46.7348820596243 -00:01:12.0585,69.6937469082507,-10.684825146835,-31.4259563142205,-0.053726526234008,46.7169577227516 -00:01:12.0680,69.6937940818812,-10.7805189066109,-31.7074085488557,-0.0540720113816772,46.6988829317813 -00:01:12.0814,69.6938613660363,-10.8155965748462,-31.8105781613122,-0.0542115025531385,46.673140100898 -00:01:12.0949,69.6939285903679,-10.7568981757201,-31.6379358109416,-0.0540237304940392,46.6474051146304 -00:01:12.1084,69.6939953064832,-10.6435609463016,-31.3045910185341,-0.0536449086436259,46.6217974014532 -00:01:12.1218,69.6940613019257,-10.5172921969318,-30.933212343917,-0.0532205537333087,46.5963736848404 -00:01:12.1353,69.6941265928918,-10.4117549514678,-30.6228086807877,-0.0528682184552931,46.5711298235778 -00:01:12.1488,69.6941913589988,-10.3463721014108,-30.4305061806199,-0.0526558184708868,46.5460181261017 -00:01:12.1652,69.6942699633441,-10.3248553660175,-30.3672216647574,-0.052599971890273,46.5154921265317 -00:01:12.1816,69.6943485727599,-10.3514159692591,-30.4453410860563,-0.0527122495123314,46.4849535015165 -00:01:12.1980,69.6944274451003,-10.4000062673775,-30.5882537275808,-0.0529018958402462,46.4543333782056 -00:01:12.2145,69.6945066544751,-10.4451952158707,-30.7211623996198,-0.0530800015718241,46.4236118092086 -00:01:12.2309,69.6945861212675,-10.4704546421782,-30.795454829936,-0.0531885444043776,46.3928099075244 -00:01:12.2521,69.6946888094214,-10.4682550737129,-30.7889855109202,-0.0532067363281385,46.3530021014896 -00:01:12.2780,69.6948141633859,-10.4330798042582,-30.6855288360534,-0.0531148525535824,46.3043551928763 -00:01:12.3039,69.6949390980296,-10.3917240927207,-30.5638943903551,-0.0530010048274761,46.2557917938667 -00:01:12.3298,69.6950636613895,-10.3665126876164,-30.4897431988718,-0.0529437503497153,46.2072991597326 -00:01:12.3557,69.695188041521,-10.3610234777339,-30.4735984639234,-0.0529559106447647,46.1588268788903 -00:01:12.3919,69.6953614664743,-10.3645064273767,-30.4838424334608,-0.0530123090998648,46.0911892559471 -00:01:12.4280,69.6955348521224,-10.3610932608325,-30.4738037083309,-0.0530445738593974,46.0235057689469 -00:01:12.4642,69.6957080608257,-10.3446162584875,-30.4253419367279,-0.0530307195375435,45.9558133995182 -00:01:12.5000,69.6958792178743,-10.3234415672293,-30.3630634330273,-0.0529997381223764,45.8888314521255 -00:01:12.5023,69.6958902765002,-10.3250780781096,-30.3678767003224,-0.0530083962444898,45.8845006658631 -00:01:12.5046,69.6959013402559,-10.3330371297409,-30.3912856757086,-0.0530394907353968,45.8801682576372 -00:01:12.5075,69.6959153212044,-10.3537567641813,-30.4522257770038,-0.0531166316218474,45.8746955900802 -00:01:12.5104,69.6959293374625,-10.3855166076584,-30.5456370813482,-0.0532329967575945,45.8692129888469 -00:01:12.5144,69.6959485713555,-10.4435070365588,-30.7161971663495,-0.0534439146258988,45.8616989274957 -00:01:12.5233,69.6959917993734,-10.6108119040589,-31.2082703060556,-0.0540498170207376,45.8448654002769 -00:01:12.5321,69.6960357673871,-10.8078552448912,-31.7878095437976,-0.0547626366331196,45.8278275046232 -00:01:12.5410,69.6960805283142,-11.0039853147516,-32.3646626904458,-0.0554735364128555,45.8105705123417 -00:01:12.5499,69.6961260327198,-11.1749431852566,-32.8674799566372,-0.0560959380864287,45.793107482656 -00:01:12.5587,69.6961721489352,-11.3046218613478,-33.2488878274935,-0.0565719800438957,45.7754739134993 -00:01:12.5705,69.6962341997016,-11.4014092176154,-33.5335565223984,-0.0569356519680557,45.7518068277843 -00:01:12.5849,69.6963098698265,-11.411784910173,-33.5640732652148,-0.0569945900634195,45.7229717059505 -00:01:12.5992,69.6963853410109,-11.3348457280965,-33.337781553225,-0.0567409899238126,45.6941799172565 -00:01:12.6136,69.6964601914401,-11.2148435439617,-32.9848339528284,-0.0563328414761238,45.665546704157 -00:01:12.6279,69.6965342745763,-11.0951676007629,-32.6328458845967,-0.05592538806914,45.6371122798923 -00:01:12.6423,69.6966076847621,-11.0069737451785,-32.3734521917014,-0.0556302347102709,45.6088510962999 -00:01:12.6566,69.6966806639855,-10.9639995242146,-32.2470574241604,-0.0554967559533217,45.5806972213884 -00:01:12.6766,69.6967821182898,-10.9688560652054,-32.261341368251,-0.0555426524372943,45.5415234292108 -00:01:12.6965,69.6968837808678,-11.0159970177832,-32.3999912287742,-0.0557405332567549,45.5022724041322 -00:01:12.7165,69.696985849202,-11.0654388357802,-32.54540834053,-0.0559472069070932,45.4628898465215 -00:01:12.7365,69.6970882359437,-11.0900199292528,-32.6177056742731,-0.0560649303488143,45.4233994304953 -00:01:12.7565,69.6971907021321,-11.0829566948552,-32.5969314554565,-0.0560689363780529,45.3838665433372 -00:01:12.7833,69.6973279838404,-11.0447908244678,-32.4846788954936,-0.0559708728416969,45.3308379905629 -00:01:12.8101,69.697464811084,-11.0030788055886,-32.3619964870252,-0.0558597413918096,45.2778971579695 -00:01:12.8369,69.6976012573007,-10.9789487690628,-32.2910257913612,-0.0558118765936794,45.2250239896496 -00:01:12.8693,69.6977658683362,-10.972951142652,-32.2733857136824,-0.0558377362515704,45.1611626217378 -00:01:12.9017,69.697930414005,-10.9743717217385,-32.2775638874662,-0.0558906386621174,45.0972647391131 -00:01:12.9340,69.6980948924022,-10.9675535027406,-32.2575103021782,-0.0559138565056162,45.0333307328938 -00:01:12.9773,69.6983141896238,-10.9440874638591,-32.1884925407619,-0.0558927772081013,44.9479674637789 -00:01:13.0000,69.6984289449025,-10.9286548144016,-32.1431023952988,-0.0558703052062038,44.9032380969728 -00:01:13.0029,69.6984440845521,-10.9317280761616,-32.1521414004754,-0.0558859511781043,44.8973341066144 -00:01:13.0059,69.6984592355952,-10.9446317269001,-32.1900933144122,-0.0559374187013719,44.8914264788602 -00:01:13.0089,69.6984744121356,-10.9685595400347,-32.2604692353963,-0.0560290828187833,44.8855112920573 -00:01:13.0119,69.6984896284338,-11.0024323646321,-32.3600951900945,-0.0561570431805855,44.8795845778606 -00:01:13.0170,69.698515714439,-11.0776063831505,-32.5811952445603,-0.0564389160791921,44.8694376570776 -00:01:13.0267,69.6985657053369,-11.2554697540561,-33.1043228060473,-0.0571031349537998,44.8500520781885 -00:01:13.0364,69.6986165229373,-11.4522789161857,-33.6831732828992,-0.0578379853231473,44.8304309199761 -00:01:13.0460,69.6986681747482,-11.6353830864436,-34.2217149601281,-0.0585241995725001,44.8105716289584 -00:01:13.0557,69.6987205522129,-11.7810833220848,-34.6502450649552,-0.0590746817352508,44.7905040764852 -00:01:13.0654,69.6987734645156,-11.8762129264082,-34.9300380188475,-0.0594406044029543,44.770281256138 -00:01:13.0793,69.6988503602384,-11.9221292109948,-35.0650859146906,-0.0596340765882923,44.7409252863174 -00:01:13.0933,69.6989272764608,-11.8792197791232,-34.9388817033035,-0.0595013893556217,44.7115513575899 -00:01:13.1073,69.6990037661715,-11.7820648500722,-34.6531319119771,-0.0591690266580207,44.6822847689589 -00:01:13.1212,69.6990796036791,-11.6694790988577,-34.3219973495813,-0.058779471105618,44.6531889625408 -00:01:13.1352,69.6991547857483,-11.5736201144862,-34.0400591602535,-0.0584509504891247,44.6242650619255 -00:01:13.1492,69.6992294714804,-11.5133613828142,-33.8628275965124,-0.0582529943028539,44.5954686350006 -00:01:13.1670,69.6993242118397,-11.4920890181195,-33.8002618179986,-0.0582047350827538,44.5588892969483 -00:01:13.1847,69.6994189471615,-11.515934954385,-33.8703969246616,-0.0583227147329441,44.522292421957 -00:01:13.2025,69.6995139269568,-11.5577121090778,-33.9932709090525,-0.0585071694011342,44.4856077669658 -00:01:13.2203,69.6996092000501,-11.5922433065685,-34.0948332546134,-0.0586653202555232,44.4488213880762 -00:01:13.2381,69.6997046589923,-11.6051293893585,-34.1327334981133,-0.0587438132054475,44.4119633509051 -00:01:13.2629,69.6998378859776,-11.5880035727578,-34.0823634492876,-0.0587236669458875,44.3604859989078 -00:01:13.2877,69.6999708189364,-11.549760652676,-33.9698842725764,-0.0586251930930928,44.3090538755964 -00:01:13.3125,69.7001033569717,-11.5139790829709,-33.8646443616792,-0.0585355881120374,44.2576956062006 -00:01:13.3374,69.700235587395,-11.4937407286123,-33.8051197900362,-0.0585034965883703,44.2063866211579 -00:01:13.3731,69.7004254196593,-11.4855234117113,-33.7809512109155,-0.0585349547130126,44.1326366298727 -00:01:13.4087,69.7006151177103,-11.4818692218159,-33.7702035935761,-0.0585836292406705,44.0588463628531 -00:01:13.4444,69.7008046460631,-11.4682580818053,-33.7301708288391,-0.058595373295336,43.9850257377973 -00:01:13.4939,69.7010672517602,-11.437226369027,-33.6389010853735,-0.0585663922578519,43.8825569500233 -00:01:13.5000,69.7010990377018,-11.4327175948556,-33.6256399848693,-0.0585600761184878,43.8701391474291 -00:01:13.5030,69.7011149327513,-11.4351766776232,-33.6328725812448,-0.0585745739620285,43.8639284556059 -00:01:13.5060,69.7011308378744,-11.4465977304798,-33.6664639131759,-0.0586226553363833,43.857714323599 -00:01:13.5090,69.7011467659016,-11.4680693281145,-33.7296156709251,-0.0587084240454326,43.8514930824737 -00:01:13.5120,69.7011627298397,-11.4986023631422,-33.8194187151242,-0.0588282048288741,43.8452610099168 -00:01:13.5173,69.7011913666779,-11.5700160869881,-34.0294590793767,-0.0591056214953289,43.8340937103095 -00:01:13.5276,69.7012466307651,-11.7407209702847,-34.5315322655432,-0.0597651659595269,43.8125982048144 -00:01:13.5388,69.7013082200321,-11.944116301408,-35.1297538276705,-0.0605510638069117,43.7887326903052 -00:01:13.5500,69.7013707833489,-12.1241685697643,-35.6593193228362,-0.0612509815208221,43.7645790603973 -00:01:13.5613,69.7014341339021,-12.2523597905681,-36.0363523252002,-0.0617569173974545,43.7401903760466 -00:01:13.5725,69.7014979809363,-12.3165473883772,-36.22513937758,-0.0620222306093779,43.7156498302904 -00:01:13.5877,69.7015844752557,-12.310904326982,-36.2085421381825,-0.0620323121822007,43.6824074324259 -00:01:13.6029,69.7016706892888,-12.2304214667801,-35.9718278434708,-0.0617593701769578,43.6492291017713 -00:01:13.6180,69.7017562629216,-12.1189257455549,-35.643899251632,-0.0613686462330642,43.6162188211302 -00:01:13.6332,69.7018411123613,-12.0164992658514,-35.3426448995629,-0.0610116329874706,43.5834010277469 -00:01:13.6484,69.7019253784092,-11.948850113595,-35.1436768046912,-0.0607857042912598,43.550735365524 -00:01:13.6636,69.7020093191893,-11.9237210373924,-35.0697677570363,-0.0607204556444474,43.5181475139005 -00:01:13.6840,69.7021221405742,-11.9395138445944,-35.1162171899835,-0.0608205938567129,43.4743186204306 -00:01:13.7044,69.7022351957938,-11.9801602337329,-35.2357653933321,-0.0610154375081209,43.4303928499757 -00:01:13.7248,69.7023485632963,-12.0126550070235,-35.3313382559514,-0.0611798874380868,43.3863472070165 -00:01:13.7453,69.7024621010289,-12.019262867421,-35.3507731394735,-0.0612462763425948,43.3422225965014 -00:01:13.7721,69.7026114446836,-11.9929543931704,-35.2733952740304,-0.0612004931672253,43.2841242366384 -00:01:13.7990,69.7027603955963,-11.9508040953974,-35.1494238099922,-0.061094094275228,43.2260885152431 -00:01:13.8259,69.7029089069689,-11.9169328257439,-35.0498024286586,-0.0610190098956077,43.1681292037197 -00:01:13.8528,69.7030571155129,-11.9005472003444,-35.0016094127778,-0.0610106362631416,43.1102066022011 -00:01:13.8966,69.7032986411573,-11.8904511645869,-34.9719151899615,-0.0610608493919696,43.0156766358805 -00:01:13.9405,69.7035398662737,-11.8765272854047,-34.9309626041315,-0.061096723005562,42.9210965434272 -00:01:13.9843,69.7037806545371,-11.8495245372938,-34.8515427567464,-0.061082458617948,42.8265060462085 -00:01:14.0000,69.7038664173092,-11.8373422240619,-34.8157124237114,-0.0610675358327782,42.792768782651 -00:01:14.0036,69.7038862904989,-11.8408560185559,-34.8260471133997,-0.0610885281957796,42.7849479771623 -00:01:14.0072,69.7039061800986,-11.8561017968305,-34.8708876377369,-0.0611548134626592,42.7771213873327 -00:01:14.0108,69.7039261057467,-11.8838733893499,-34.9525687922056,-0.0612695002109841,42.7692832268241 -00:01:14.0145,69.7039460865436,-11.9223659063315,-35.0657820774456,-0.0614256728632611,42.7614278616579 -00:01:14.0213,69.7039841117935,-12.0148146393908,-35.3376901158552,-0.0617973183954241,42.7464966233212 -00:01:14.0324,69.7040460653696,-12.1891672612242,-35.8504919447772,-0.0624956164212278,42.7222291004837 -00:01:14.0434,69.7041088930761,-12.3631608587692,-36.3622378199094,-0.0631942842902821,42.6976939651486 -00:01:14.0545,69.704172511389,-12.5047995533579,-36.7788222157585,-0.0637690695287021,42.6729153111857 -00:01:14.0655,69.7042367154607,-12.5952867715895,-37.0449610929102,-0.0641463404097947,42.6479532838451 -00:01:14.0800,69.7043211012444,-12.6308787153856,-37.149643280546,-0.0643188330689642,42.6151663744502 -00:01:14.0945,69.7044054793704,-12.5895592893888,-37.028115557026,-0.0641921418768528,42.5823644137659 -00:01:14.1089,69.7044894522067,-12.5024916379895,-36.7720342293809,-0.0638869402139841,42.5496654994452 -00:01:14.1234,69.7045728292747,-12.4044357670642,-36.4836346090122,-0.0635383887201301,42.5171264187047 -00:01:14.1378,69.7046556234815,-12.323403381892,-36.2453040643882,-0.0632556439728682,42.4847435904837 -00:01:14.1523,69.7047379903966,-12.2747505403343,-36.1022074715714,-0.0630987414897976,42.4524709841779 -00:01:14.1724,69.7048522181769,-12.2602425864375,-36.0595370189339,-0.0630876591865575,42.4076611574227 -00:01:14.1925,69.7049664735736,-12.2852927320282,-36.1332139177299,-0.0632312835637821,42.3628106114526 -00:01:14.2126,69.7050809701489,-12.3190312685457,-36.2324449074874,-0.0634094085812897,42.3178554767073 -00:01:14.2327,69.7051956872583,-12.3374236851875,-36.2865402505514,-0.0635279329292645,42.2728016310465 -00:01:14.2568,69.7053334618128,-12.3284256081581,-36.2600753181119,-0.0635486668075092,42.2186521499155 -00:01:14.2909,69.7055273849863,-12.284131238787,-36.1297977611382,-0.0634537091344923,42.1423140225406 -00:01:14.3249,69.705720661675,-12.2384599198724,-35.9954703525658,-0.0633529297303759,42.066074885342 -00:01:14.3590,69.7059134144093,-12.2129718764186,-35.9205055188783,-0.0633314473781913,41.9898981445746 -00:01:14.4012,69.7061520584919,-12.1994726953283,-35.8808020450831,-0.0633764566922697,41.8954161104602 -00:01:14.4434,69.7063903666404,-12.1838019202459,-35.834711530135,-0.0634132131717509,41.8008883833836 -00:01:14.4946,69.7066782621654,-12.1505889050909,-35.7370261914437,-0.0634014265925917,41.6864363183897 -00:01:14.5000,69.7067086155848,-12.1461646718704,-35.7240137407953,-0.0633965337959595,41.6743527771267 -00:01:14.5037,69.7067295602871,-12.1491127843281,-35.7326846597886,-0.0634170480748295,41.666013329276 -00:01:14.5074,69.7067505202615,-12.1630516087495,-35.7736812022045,-0.0634813449833722,41.657668086424 -00:01:14.5111,69.7067715142917,-12.1886530834936,-35.8489796573342,-0.0635921468492337,41.6493113375548 -00:01:14.5148,69.7067925605488,-12.2241563985382,-35.953401172171,-0.063742492833482,41.6409375513377 -00:01:14.5222,69.7068345317563,-12.3134914288662,-36.2161512613712,-0.0641165120801843,41.6242552124616 -00:01:14.5340,69.7069018597351,-12.4775706123296,-36.698737095087,-0.0648004971157567,41.5975488257685 -00:01:14.5457,69.7069700455461,-12.636435555978,-37.1659869293471,-0.0654655001512274,41.5705688118803 -00:01:14.5574,69.7070389770359,-12.7587007328768,-37.5255903908142,-0.0659856187714818,41.5433487367072 -00:01:14.5692,69.7071084205961,-12.827759960081,-37.7287057649441,-0.066293543541066,41.5159594589967 -00:01:14.5852,69.7072037767624,-12.837042321891,-37.7560068290912,-0.0663736388276379,41.4783524232855 -00:01:14.6013,69.7072989499778,-12.7734606985882,-37.5690020546711,-0.0661609739327789,41.4407772621487 -00:01:14.6173,69.7073935606894,-12.6767087845957,-37.2844376017519,-0.0658144126499144,41.4033504371395 -00:01:14.6334,69.7074874994067,-12.5850313748918,-37.0147981614464,-0.065487569465813,41.3661058338773 -00:01:14.6495,69.7075808839775,-12.5235302396919,-36.8339124696821,-0.0652815692775312,41.3290076200796 -00:01:14.6655,69.7076739530056,-12.499846759516,-36.7642551750471,-0.0652275324603051,41.2919827702806 -00:01:14.6881,69.7078048838257,-12.5115551115648,-36.7986915046023,-0.065333099741317,41.2398510768514 -00:01:14.7107,69.7079360018501,-12.5427932792751,-36.8905684684563,-0.0655180498067049,41.1876149012576 -00:01:14.7333,69.7080673451544,-12.5614876698031,-36.9455519700092,-0.065652929323635,41.13526214904 -00:01:14.7559,69.7081987353261,-12.5539944757105,-36.9235131638543,-0.0656821315243477,41.0828475688369 -00:01:14.7888,69.7083893951571,-12.5129749535245,-36.8028675103661,-0.0656023881817291,41.0066704636898 -00:01:14.8217,69.7085794461761,-12.4671365352356,-36.6680486330459,-0.0655026885505183,40.9305814724888 -00:01:14.8546,69.7087689629477,-12.4380098131892,-36.5823818034977,-0.0654707229056281,40.8545576791341 -00:01:14.8956,69.7090049737531,-12.4203753492254,-36.530515733016,-0.0655072081956773,40.759701795583 -00:01:14.9366,69.7092406143456,-12.4035845047919,-36.4811308964468,-0.0655474793221435,40.6648037870656 -00:01:14.9879,69.7095349000317,-12.3692290787785,-36.3800855258192,-0.0655434936633377,40.5460071233196 -00:01:15.0000,69.7096039301447,-12.3590554442767,-36.3501630714021,-0.065533930569429,40.5180947029231 -00:01:15.0044,69.7096293120541,-12.3630307017523,-36.3618550051538,-0.0655621675178606,40.5078276209275 -00:01:15.0088,69.7096547171035,-12.3806069163762,-36.4135497540476,-0.0656464190931271,40.4975514096982 -00:01:15.0133,69.7096801720929,-12.4118791514391,-36.5055269159972,-0.0657871520829118,40.4872576434157 -00:01:15.0177,69.709705701727,-12.4540799788625,-36.6296469966545,-0.0659730514843185,40.4769385425738 -00:01:15.0270,69.7097598003519,-12.5618888601297,-36.9467319415579,-0.0664432929413728,40.4550952348073 -00:01:15.0397,69.7098341858569,-12.7185869826365,-37.4076087724604,-0.0671261792042736,40.4251155087458 -00:01:15.0525,69.7099094053671,-12.8529119556014,-37.8026822223572,-0.0677185345134339,40.3948565765941 -00:01:15.0652,69.7099852570126,-12.9386042369923,-38.054718344095,-0.0681109879632319,40.364381452475 -00:01:15.0779,69.7100614415131,-12.9669816067485,-38.138181196319,-0.0682665841203735,40.3337842478714 -00:01:15.0946,69.7101615091164,-12.932435120388,-38.036573883494,-0.0681730806921211,40.2935660306905 -00:01:15.1113,69.7102611491684,-12.8493966440907,-37.7923430708549,-0.0678777012500051,40.2534539933347 -00:01:15.1280,69.7103601472346,-12.7577455367025,-37.5227809903015,-0.0675457950768118,40.2135163880439 -00:01:15.1447,69.7104585430247,-12.6878965492102,-37.3173427917946,-0.0673038830819819,40.1737409897028 -00:01:15.1614,69.7105565414796,-12.6533219667983,-37.2156528435245,-0.0672083611961655,40.1340630553425 -00:01:15.1858,69.7106997562535,-12.653345752681,-37.2157228020028,-0.0672794292346396,40.0760109093775 -00:01:15.2102,69.7108430772391,-12.6793042190694,-37.292071232557,-0.0674592808226098,40.017863366498 -00:01:15.2178,69.7108875263725,-12.6853518450494,-37.3098583677923,-0.0675068139400528,39.9998205120251 -00:01:15.2178,69.7108875263725,-12.6853494482685,-37.3098513184366,-0.0675068139400589,39.9998205120229 -00:01:15.2423,69.7110309019519,-12.6733023558566,-37.2744186936958,-0.0675284297273502,39.9415434968888 -00:01:15.2667,69.7111739566767,-12.6449412767465,-37.1910037551367,-0.067481653331188,39.8833068497709 -00:01:15.2968,69.7113499302008,-12.6096290059762,-37.0871441352242,-0.0674223497471516,39.8115316903796 -00:01:15.3367,69.711582075701,-12.570709574419,-36.9726752188795,-0.0673763386576046,39.7166950125061 -00:01:15.3975,69.7119352783129,-12.5281047295183,-36.8473668515245,-0.0673768042684596,39.5720247224657 -00:01:15.4729,69.7123720709516,-12.4803385279108,-36.7068780232672,-0.0673994505418256,39.3924551119587 -00:01:15.5000,69.7125280627093,-12.4620656039773,-36.653134129345,-0.0674027337029756,39.3281444577355 -00:01:15.5044,69.7125540271713,-12.4658652386659,-36.6643095254879,-0.0674324400123068,39.317431357798 -00:01:15.5089,69.7125800132693,-12.4817575215207,-36.7110515338843,-0.0675137132633202,39.3067090462731 -00:01:15.5134,69.7126060448934,-12.5097135298292,-36.793275087733,-0.0676465035721157,39.295969764674 -00:01:15.5179,69.7126321439027,-12.5471471802585,-36.9033740595839,-0.0678198622046678,39.2852063911382 -00:01:15.5279,69.7126901769961,-12.6463184917294,-37.1950543874394,-0.0682739063570873,39.2612932362054 -00:01:15.5413,69.7127693056222,-12.7853790377558,-37.6040559933995,-0.0689108221038805,39.2287331430071 -00:01:15.5548,69.7128491935065,-12.8976677004202,-37.9343167659419,-0.0694350618654873,39.195904895769 -00:01:15.5682,69.7129296115216,-12.9602089340252,-38.1182615706625,-0.0697473455809477,39.1628826738896 -00:01:15.5848,69.7130289792721,-12.9652022580924,-38.1329478179188,-0.0698234860156237,39.1220703464819 -00:01:15.6014,69.7131281775651,-12.9114494847003,-37.9748514255892,-0.0696470450339906,39.0812816943684 -00:01:15.6179,69.7132268941818,-12.8320822009154,-37.7414182379866,-0.069359830076288,39.0406192568038 -00:01:15.6345,69.7133250485442,-12.7585585163043,-37.5251721067775,-0.0690970757202798,39.0001098010826 -00:01:15.6511,69.7134227485616,-12.7104529371789,-37.3836851093496,-0.068943279914457,38.9597182061229 -00:01:15.6725,69.7135488872193,-12.690354126632,-37.3245709606824,-0.0689257469991987,38.9074955096594 -00:01:15.6939,69.7136749596505,-12.700892584926,-37.355566426253,-0.0690407217848651,38.8552420253289 -00:01:15.7154,69.7138011386565,-12.7174553383046,-37.4042804067781,-0.0691822942192708,38.8029005745105 -00:01:15.7412,69.7139528505617,-12.7197374971634,-37.4109926387159,-0.0692766927299424,38.7399045922926 -00:01:15.7669,69.7141044445085,-12.6985174338028,-37.3485806876553,-0.069269339405799,38.6768707141132 -00:01:15.8040,69.7143217661525,-12.6513489909903,-37.209849973501,-0.0691860791612394,38.5863231080515 -00:01:15.8410,69.7145383797865,-12.6100036431293,-37.0882460092039,-0.0691278325205986,38.4958511906029 -00:01:15.8781,69.7147544346838,-12.5841389391673,-37.0121733504921,-0.0691371519644209,38.4054053743395 -00:01:15.9384,69.715105650701,-12.5489313797806,-36.9086217052371,-0.0691832391091846,38.2579597268171 -00:01:16.0000,69.715462481366,-12.5044712321072,-36.7778565650213,-0.0691930582261794,38.1076144533334 -00:01:16.0051,69.7154924403846,-12.5083807437501,-36.7893551286766,-0.0692277044062917,38.0949675130558 -00:01:16.0103,69.7155224262491,-12.5257113212934,-36.8403274155688,-0.0693217359940866,38.0823083387562 -00:01:16.0155,69.715552468635,-12.555849794262,-36.9289699831235,-0.0694725431881622,38.0696269045569 -00:01:16.0206,69.7155825934573,-12.5954128279143,-37.0453318468068,-0.0696652596958248,38.0569144355608 -00:01:16.0327,69.71565295865,-12.7000154608619,-37.3529866495937,-0.0701701982476385,38.027242410423 -00:01:16.0473,69.7157393375731,-12.8207126682458,-37.7079784360171,-0.070757441528578,37.9908557821386 -00:01:16.0619,69.715826380445,-12.903068270388,-37.9502007952589,-0.0711761567018072,37.9542173475332 -00:01:16.0765,69.7159137893196,-12.9315538530513,-38.0339819207392,-0.0713561627454329,37.9174275013014 -00:01:16.0966,69.7160334529728,-12.8971470081784,-37.9327853181719,-0.0712757843266631,37.8670132553868 -00:01:16.1166,69.7161526231608,-12.8169716916134,-37.6969755635687,-0.070990590488246,37.8167155620708 -00:01:16.1366,69.7162710956939,-12.7366761405671,-37.4608121781384,-0.070703916424341,37.7666043720484 -00:01:16.1566,69.7163889858527,-12.6858232579751,-37.3112448763974,-0.070548135852472,37.7166408851346 -00:01:16.1767,69.7165065680658,-12.6702696961896,-37.2654991064399,-0.070550110778746,37.6667317613702 -00:01:16.2027,69.7166594592684,-12.6789134536465,-37.2909219224898,-0.0706825058129706,37.6017550744939 -00:01:16.2288,69.7168124230492,-12.6893556757757,-37.3216343405169,-0.070823727887435,37.5366670254096 -00:01:16.2548,69.7169653710716,-12.6806402266996,-37.2960006667636,-0.070879264927804,37.4714974833616 -00:01:16.2877,69.717158273548,-12.6445669639906,-37.1899028352666,-0.0708365097002052,37.3891504370917 -00:01:16.3206,69.7173506067097,-12.6012182953944,-37.06240675116,-0.0707605759492205,37.3068601344951 -00:01:16.3535,69.7175423823046,-12.5675283558792,-36.9633186937624,-0.070728148457227,37.224622663978 -00:01:16.3981,69.71780134072,-12.5371263305648,-36.8739009722496,-0.0707533977880964,37.113298788566 -00:01:16.4560,69.7181371037943,-12.4985612930683,-36.7604743913772,-0.0707911810417269,36.9684915961306 -00:01:16.5000,69.7183908066923,-12.4630170431324,-36.6559324798011,-0.0707912215607324,36.8587189333532 -00:01:16.5058,69.7184243815055,-12.4667006073035,-36.666766492069,-0.0708297961017874,36.844169601826 -00:01:16.5116,69.7184579867413,-12.4845498334842,-36.7192642161301,-0.0709335357312472,36.8296051475596 -00:01:16.5174,69.7184916567684,-12.5152788253237,-36.8096436038932,-0.0710966598459943,36.8150134956032 -00:01:16.5245,69.7185326184648,-12.5635436756009,-36.951599045885,-0.0713454412795852,36.7972663839332 -00:01:16.5378,69.718610304751,-12.6614574841429,-37.2395808357143,-0.0718476388652154,36.7636264958143 -00:01:16.5511,69.7186885409772,-12.7470891464138,-37.4914386659228,-0.0722948384474874,36.7297689478264 -00:01:16.5644,69.7187671921671,-12.8002437676175,-37.6477757871104,-0.0725932607935574,36.6957406529129 -00:01:16.5814,69.7188681469916,-12.8122865979215,-37.6831958762398,-0.0727170727763798,36.6520454073718 -00:01:16.5984,69.7189690101001,-12.774330220949,-37.5715594733794,-0.0726093034299177,36.6083417217233 -00:01:16.6155,69.7190694971638,-12.7111459059573,-37.3857232528155,-0.072384007276955,36.5647302119282 -00:01:16.6325,69.7191695091175,-12.6485401840783,-37.2015887767009,-0.0721607152839962,36.521246238053 -00:01:16.6495,69.7192691099227,-12.6039097182122,-37.0703227006242,-0.0720203994038361,36.4778674658032 -00:01:16.6724,69.7194022696364,-12.5786536517172,-36.9960401521093,-0.0719928050663046,36.4197809893378 -00:01:16.7014,69.7195714323331,-12.5788886249849,-36.9967312499555,-0.0721088101246567,36.3458702118783 -00:01:16.7305,69.7197405704621,-12.5823909616267,-37.0070322400785,-0.0722408832030048,36.2718498220623 -00:01:16.7595,69.7199095992212,-12.5672530930438,-36.9625090971876,-0.0722862641249949,36.1977495887579 -00:01:16.7955,69.7201187782849,-12.5262677980484,-36.841964111907,-0.0722383853431586,36.1058441934517 -00:01:16.8315,69.7203272814386,-12.4814125743757,-36.7100369834578,-0.0721719808734907,36.0139973142794 -00:01:16.8676,69.7205351506771,-12.4469559091043,-36.6086938503067,-0.0721544380835966,35.9221939721474 -00:01:16.9190,69.7208308922911,-12.4097174325847,-36.4991689193667,-0.0721860722416509,35.7911934320168 -00:01:16.9819,69.7211920566776,-12.3611574012486,-36.35634529779,-0.0722115785911555,35.6305915834164 -00:01:17.0000,69.7212950526165,-12.3454732065078,-36.3102153132582,-0.0722103756826057,35.5846646109128 -00:01:17.0074,69.7213374303859,-12.3508193676835,-36.3259393167163,-0.0722663624663068,35.5657532843715 -00:01:17.0148,69.7213798591222,-12.3739477063572,-36.3939638422271,-0.0724076090175543,35.5468153674603 -00:01:17.0222,69.7214223900959,-12.4113496819933,-36.5039696529213,-0.0726175372024448,35.527832072535 -00:01:17.0296,69.7214650597074,-12.4563317407086,-36.6362698256135,-0.0728642463332939,35.5087899989643 -00:01:17.0432,69.7215439166129,-12.5359164098426,-36.8703423818901,-0.0733041581039386,35.4736084367002 -00:01:17.0599,69.7216407599846,-12.6042439201629,-37.0713056475379,-0.0737045121317791,35.4304078224478 -00:01:17.0765,69.7217379371565,-12.6259381896557,-37.1351123225166,-0.0738815174125025,35.3870423758803 -00:01:17.0984,69.7218658022017,-12.5922430256726,-37.036008899037,-0.0738145839899939,35.3299112331679 -00:01:17.1204,69.7219931779827,-12.5222537190762,-36.8301579972829,-0.0735716532315528,35.2728866058266 -00:01:17.1423,69.7221199037204,-12.4554826590534,-36.6337725266278,-0.0733433063221828,35.2160282499275 -00:01:17.1642,69.7222461083732,-12.415238779894,-36.5154081761588,-0.07324278843821,35.1592890566961 -00:01:17.1907,69.7223982884572,-12.4010904564531,-36.4737954601562,-0.0732885614969193,35.0907479022596 -00:01:17.2171,69.7225503602126,-12.4027233066062,-36.4785979606064,-0.0734116254402278,35.0221394003946 -00:01:17.2436,69.7227023774289,-12.3973318841593,-36.4627408357628,-0.0735011214237992,34.9534431805459 -00:01:17.2759,69.7228874270679,-12.3697936334302,-36.381745980677,-0.073508189996695,34.869651942957 -00:01:17.3251,69.7231686574848,-12.3110004475448,-36.20882484572,-0.0734364833019114,34.7419209710875 -00:01:17.3744,69.7234486901678,-12.2585273494873,-36.0544922043744,-0.0733954669571112,34.6142617703387 -00:01:17.4236,69.7237276865017,-12.2185896521811,-35.9370283887681,-0.0734164280156998,34.4866135571595 -00:01:17.5000,69.724158389861,-12.1560358974593,-35.7530467572333,-0.0734465471017905,34.2886541048253 -00:01:17.5079,69.7242032318639,-12.1608361539488,-35.767165158673,-0.0735063259124729,34.2679824279166 -00:01:17.5159,69.7242481237011,-12.1816325350471,-35.8283309854327,-0.0736461902243711,34.2472816598356 -00:01:17.5238,69.7242931131886,-12.2146215504132,-35.9253575012154,-0.0738473588299658,34.2265334971994 -00:01:17.5337,69.7243490329107,-12.2619224391422,-36.0644777621828,-0.0741294221381546,34.2007447309925 -00:01:17.5492,69.7244374123695,-12.3269081503637,-36.2556122069521,-0.0745274074530754,34.1599851241371 -00:01:17.5648,69.7245261475406,-12.3648242934211,-36.367130274768,-0.0747909081119259,34.1190495835862 -00:01:17.5840,69.7246364252336,-12.3644642129628,-36.3660712145964,-0.0748803883474099,34.0681317226192 -00:01:17.6074,69.7247698210011,-12.3147718059465,-36.2199170763134,-0.0747406468832826,34.0064354909011 -00:01:17.6308,69.7249026262825,-12.2472864812644,-36.0214308272484,-0.0745102354013907,33.9448754587499 -00:01:17.6541,69.7250348181679,-12.1944667030771,-35.8660785384621,-0.0743530226357485,33.8834610021621 -00:01:17.6775,69.7251665928577,-12.1683380697417,-35.7892296168873,-0.0743305305249975,33.8221168467876 -00:01:17.7123,69.7253628343007,-12.1566593864721,-35.7548805484473,-0.0744358690093212,33.7305690966703 -00:01:17.7472,69.7255588312781,-12.1453172155911,-35.7215212223269,-0.0745438657111339,33.6389127549742 -00:01:17.7820,69.7257544642173,-12.1156316158053,-35.6342106347215,-0.0745587960976316,33.5471937386122 -00:01:17.8269,69.7260057932989,-12.0621365254601,-35.4768721337062,-0.0744999700821041,33.4289927282222 -00:01:17.8718,69.7262560967933,-12.0121461738812,-35.329841687886,-0.074458818053965,33.3108514197654 -00:01:17.9266,69.7265599802918,-11.9636600435792,-35.1872354222917,-0.0744729471913989,33.1668597707027 -00:01:18.0000,69.7269652565178,-11.9003176025965,-35.0009341252837,-0.0745010362548724,32.9738666814077 -00:01:18.0094,69.7270175837238,-11.9047348932845,-35.0139261567192,-0.074570659259445,32.9488705174783 -00:01:18.0189,69.7270699691772,-11.9255557032978,-35.0751638332288,-0.0747262659246401,32.9238354767337 -00:01:18.0284,69.727122467091,-11.9571190256961,-35.1679971344003,-0.0749385430637359,32.8987398125521 -00:01:18.0404,69.7271886041757,-11.998829029668,-35.2906736166705,-0.0752168237365739,32.8671172178734 -00:01:18.0576,69.7272845741565,-12.0417396656986,-35.4168813697018,-0.0755294145809781,32.8212107209832 -00:01:18.0749,69.7273807510947,-12.0534712476012,-35.4513860223564,-0.0756792604907627,32.7751679208974 -00:01:18.0987,69.7275133679128,-12.0230091766807,-35.3617916961196,-0.0756408350614406,32.7115825102799 -00:01:18.1225,69.7276455269534,-11.9649794234773,-35.1911159514037,-0.0754564095530183,32.6480789163887 -00:01:18.1463,69.727777101653,-11.9101779987622,-35.0299352904771,-0.0752881307951198,32.5847085497934 -00:01:18.1701,69.7279082019856,-11.8757021133555,-34.9285356275161,-0.0752268859003908,32.5214275085441 -00:01:18.2014,69.7280805176539,-11.8561780322381,-34.871111859524,-0.0752836507523542,32.4380658179974 -00:01:18.2328,69.7282525705537,-11.8443930851445,-34.8364502504249,-0.0753822699516952,32.3546323456545 -00:01:18.2642,69.7284243498525,-11.8225006109951,-34.7720606205738,-0.0754275672814058,32.2711310327649 -00:01:18.3049,69.7286468347535,-11.7778110847694,-34.6406208375571,-0.0753995871792053,32.1626635429205 -00:01:18.3578,69.72893482817,-11.7168649614425,-34.4613675336544,-0.0753476113200326,32.0217052827181 -00:01:18.4108,69.7292214765476,-11.664865752933,-34.3084286850971,-0.0753438185005045,31.8807829373239 -00:01:18.4829,69.729609543233,-11.5997896314118,-34.1170283276818,-0.0753700073071894,31.6890117654275 -00:01:18.5000,69.7297012779776,-11.5843697374475,-34.0716756983749,-0.0753764440985095,31.6435112016573 -00:01:18.5125,69.7297687503211,-11.5885560873918,-34.0839884923288,-0.0754663422111595,31.6100080163074 -00:01:18.5251,69.7298363004039,-11.6104826009439,-34.1484782380702,-0.0756539331277678,31.5764424692809 -00:01:18.5377,69.7299039935079,-11.639987664668,-34.2352578372588,-0.0758838743990151,31.5427869862964 -00:01:18.5533,69.7299883951014,-11.6695646250935,-34.3222488973338,-0.0761318392410985,31.5007979340196 -00:01:18.5736,69.730097923746,-11.6803504648358,-34.3539719553993,-0.0763027241347482,31.4462511356435 -00:01:18.5993,69.7302369314007,-11.6516252483543,-34.2694860245716,-0.0762862493107798,31.3768985631804 -00:01:18.6251,69.7303754768937,-11.5980471614761,-34.1119034161061,-0.0761318054930621,31.3076119096521 -00:01:18.6508,69.7305134363356,-11.5471666384434,-33.9622548189513,-0.0759914403139093,31.2384439052138 -00:01:18.6766,69.7306509110834,-11.5139062142844,-33.8644300420129,-0.0759484431985673,31.1693520920903 -00:01:18.7117,69.7308377913025,-11.489770850311,-33.7934436773852,-0.0760080417792622,31.0751858089993 -00:01:18.7468,69.7310242708802,-11.4692590619438,-33.7331148880699,-0.0760886205717086,30.9809487169423 -00:01:18.7818,69.7312103052721,-11.4381699137296,-33.6416762168518,-0.0761104325894172,30.8866593533994 -00:01:18.8304,69.731466821986,-11.3831164681656,-33.4797543181342,-0.0760730114444259,30.7561692927448 -00:01:18.8892,69.7317758127461,-11.3187195716014,-33.2903516811807,-0.0760402101663065,30.5982352397473 -00:01:18.9480,69.7320831753221,-11.2618914356951,-33.1232101049854,-0.0760505691534524,30.440314987182 -00:01:19.0000,69.7323534085355,-11.2129889929265,-32.9793793909604,-0.0760675586870978,30.3007916857813 -00:01:19.0171,69.7324423283787,-11.2154218793079,-32.986534939141,-0.0761802190155507,30.2547483882033 -00:01:19.0342,69.7325313301163,-11.2339520456926,-33.0410354285076,-0.0763864346404591,30.2086091553888 -00:01:19.0513,69.7326204659349,-11.252717344077,-33.0962274825796,-0.0765950820331333,30.1623505054447 -00:01:19.0730,69.7327334367457,-11.25698933989,-33.1087921761471,-0.076747721769849,30.1036423651637 -00:01:19.0997,69.7328721938217,-11.2298901166168,-33.0290885782847,-0.0767484296829835,30.0313870940537 -00:01:19.1263,69.7330105145318,-11.182913687074,-32.8909226090411,-0.0766332172326569,29.9591766532679 -00:01:19.1530,69.7331482917038,-11.1370843620413,-32.756130476592,-0.0765239642509832,29.8870589393026 -00:01:19.1851,69.7333137114141,-11.0988419547033,-32.643652807951,-0.0764910287427841,29.8002271575672 -00:01:19.2278,69.7335328539036,-11.0655021929361,-32.5455946851063,-0.0765500608632685,29.6848041003129 -00:01:19.2733,69.7337654078506,-11.0289913908235,-32.4382099730104,-0.0766078330686392,29.5618321988657 -00:01:19.3188,69.7339970559352,-10.9817915360884,-32.2993868708481,-0.0766028452411387,29.438829149847 -00:01:19.3875,69.7343450643854,-10.9057225904363,-32.0756546777539,-0.0765669249215493,29.2530501546302 -00:01:19.4562,69.7346907798379,-10.8347898702134,-31.8670290300394,-0.0765617787589817,29.0673008040521 -00:01:19.5000,69.7349099758483,-10.7921122707307,-31.7415066786198,-0.0765740159932705,28.9489044347838 -00:01:19.5358,69.7350892728392,-10.7881471879184,-31.7298446703482,-0.0767732074202947,28.8517192737611 -00:01:19.5614,69.7352169761859,-10.7905725085833,-31.7369779664215,-0.0769485584745529,28.7823228207232 -00:01:19.5870,69.7353445937811,-10.7776356639057,-31.6989284232521,-0.0770312114121166,28.7128208860886 -00:01:19.6193,69.7355054086735,-10.7381596333869,-31.582822451138,-0.0769943579719679,28.6249990300859 -00:01:19.6516,69.7356655943898,-10.6897839463694,-31.4405410187336,-0.0769023670707434,28.5372379037606 -00:01:19.6839,69.7358251358744,-10.6483834851068,-31.3187749561964,-0.0768527920862204,28.4495448809392 -00:01:19.7259,69.7360319395821,-10.6082863396861,-31.2008421755475,-0.0768733683155925,28.3354605184378 -00:01:19.7841,69.7363170011865,-10.5560382462686,-31.0471713125546,-0.0769229815566973,28.1774440057223 -00:01:19.8422,69.7366005160203,-10.4964171061441,-30.871815018071,-0.0769272262887786,28.0193911980864 -00:01:19.9197,69.7369752298639,-10.412394529185,-30.6246897917205,-0.0769036341554109,27.8090891727554 -00:01:20.0000,69.737360694372,-10.328443250481,-30.3777742661205,-0.0768995258348048,27.5910438762801 -00:01:20.1000,69.7378372728866,-10.2536179226508,-30.1576997725023,-0.0770885572456405,27.3190611422278 -00:01:20.1594,69.7381185292715,-10.1955239578098,-29.9868351700289,-0.0771149249258665,27.1572684352882 -00:01:20.2188,69.7383980228455,-10.1248864572934,-29.7790778155689,-0.0770595565237066,26.9955027219984 -00:01:20.2782,69.7386756929719,-10.0588659368098,-29.5848998141465,-0.0770340907462537,26.8337938486332 -00:01:20.3523,69.739019321475,-9.98439848026762,-29.36587788314,-0.0770542931430799,26.6322775992197 -00:01:20.4523,69.7394791781039,-9.88155001872143,-29.0633824080042,-0.0770674923066091,26.3601306402247 -00:01:20.5000,69.7396966467308,-9.83075787496359,-28.9139937498929,-0.0770621667571264,26.2304209443393 -00:01:20.6000,69.7401491739967,-9.71958140067313,-28.5870041196269,-0.0770195751651497,25.9583573256281 -00:01:20.6999,69.7405967496074,-9.61445124736351,-28.2777977863633,-0.0770186599951053,25.6863416217138 -00:01:20.7999,69.7410394876666,-9.51130729580679,-27.9744332229611,-0.0770325715264445,25.4143111938661 -00:01:20.8999,69.7414773744993,-9.4059131088574,-27.6644503201688,-0.0770316878875925,25.1422704849674 -00:01:21.0000,69.7419103756353,-9.29993492131439,-27.3527497685717,-0.0770274062377936,24.8702351805812 -00:01:21.1000,69.7423375394194,-9.1602683785647,-26.9419658193079,-0.0767765386476967,24.598735184945 -00:01:21.1503,69.74255044972,-9.10242771266216,-26.7718462137122,-0.076739277463742,24.4622150118405 -00:01:21.2007,69.7427621711462,-9.05864317134586,-26.6430681510172,-0.0768056723851489,24.325670789639 -00:01:21.2510,69.7429727871705,-9.01175225735944,-26.505153698116,-0.0768502565243058,24.1890549008903 -00:01:21.3014,69.743182200837,-8.95680475647992,-26.3435434014115,-0.0768353715608038,24.0524214653699 -00:01:21.3873,69.743536662058,-8.86256282400446,-26.0663612470719,-0.076806342696041,23.8192834141889 -00:01:21.4732,69.7438874950835,-8.77271118603749,-25.8020917236397,-0.076810844278279,23.5861631032706 -00:01:21.5000,69.7439958336575,-8.74553658402894,-25.7221664236145,-0.0768182301178932,23.5136876804514 -00:01:21.5265,69.7441029587885,-8.69758094981594,-25.5811204406351,-0.0766637687673604,23.4417820566112 -00:01:21.5465,69.7441833534779,-8.65249436968065,-25.4485128520019,-0.0764774068114824,23.3876509360827 -00:01:21.5665,69.7442633682741,-8.612728797595,-25.3315552870441,-0.0763310451149832,23.3336295912537 -00:01:21.5928,69.7443679804289,-8.57843156809002,-25.2306810826177,-0.0762767283261854,23.2627917340241 -00:01:21.6298,69.7445145736342,-8.55104354889519,-25.1501280849859,-0.0763626644307889,23.1631488912011 -00:01:21.6667,69.7446606782678,-8.52606552161889,-25.0766632988791,-0.076468830412368,23.0634045134798 -00:01:21.7037,69.7448062344412,-8.48993888553407,-24.9704084868649,-0.0764884090704782,22.963593498214 -00:01:21.7504,69.7449891034913,-8.4344828958297,-24.8073026347932,-0.0764354751893008,22.8375457095722 -00:01:21.7971,69.7451708274428,-8.38094836217041,-24.6498481240306,-0.0763972339461611,22.7115535044438 -00:01:21.8560,69.7453988032874,-8.32104311261893,-24.4736562135851,-0.076410543556608,22.5524480166552 -00:01:21.9519,69.745766059117,-8.22383159730236,-24.1877399920658,-0.0764352093622237,22.2936370756326 -00:01:22.0000,69.7459484058286,-8.17335760331247,-24.0392870685661,-0.0764335977156075,22.1639564468032 -00:01:22.0159,69.7460087634356,-8.1427305082493,-23.9492073772038,-0.0763189440527694,22.120850377478 -00:01:22.0319,69.7460688492188,-8.09959531690007,-23.8223391673531,-0.076100253788285,22.077837748521 -00:01:22.0479,69.7461286189544,-8.05485376731385,-23.6907463744525,-0.0758670469110262,22.0349469640806 -00:01:22.0675,69.7462015035743,-8.01190992106951,-23.5644409443221,-0.07567814530402,21.9825066721068 -00:01:22.0914,69.7462901230013,-7.98215414907875,-23.4769239678787,-0.0756345137454116,21.9185547731201 -00:01:22.1215,69.7464013608719,-7.96592552907818,-23.4291927325829,-0.075756670220812,21.8380067658679 -00:01:22.1517,69.7465123569681,-7.9521911718521,-23.3887975642709,-0.0759013286915044,21.7573375090008 -00:01:22.1818,69.7466230597248,-7.92685189903121,-23.3142702912683,-0.0759498200889094,21.6765789314172 -00:01:22.2184,69.7467571591165,-7.88268708737742,-23.1843737864042,-0.0758964617848704,21.578325435072 -00:01:22.2551,69.7468905177786,-7.8365846506589,-23.0487783842909,-0.0758259332481443,21.4801361511631 -00:01:22.2992,69.747049980572,-7.78942287246793,-22.9100672719645,-0.0758111293229022,21.3620946109272 -00:01:22.3574,69.747259076849,-7.7339191871764,-22.7468211387541,-0.0758499676654262,21.2062633089534 -00:01:22.4155,69.7474666169056,-7.67615860458284,-22.5769370723025,-0.0758702169474453,21.0503912912553 -00:01:22.5000,69.7477648284309,-7.58718453808007,-22.315248641412,-0.0758549850886631,20.8242589917244 -00:01:22.5122,69.7478077618346,-7.56355927339991,-22.2457625688233,-0.0757578194765973,20.7914850893456 -00:01:22.5244,69.7478505268711,-7.52820653767438,-22.1417839343364,-0.075556171549215,20.7587766192655 -00:01:22.5367,69.7478930808512,-7.48765075598528,-22.0225022234861,-0.0753074212680063,20.7261627796187 -00:01:22.5515,69.7479444471016,-7.44239409530738,-21.8893943979629,-0.0750393378458369,20.6867050748145 -00:01:22.5708,69.7480105718147,-7.40070195653678,-21.7667704604023,-0.0748407544114416,20.6357726224488 -00:01:22.5949,69.7480929519328,-7.37558771044455,-21.6929050307193,-0.0748322809045994,20.5721217033559 -00:01:22.6189,69.7481751364619,-7.36821220533031,-21.6712123686185,-0.0749831174476332,20.5084199055536 -00:01:22.6430,69.7482572233406,-7.361819590008,-21.6524105588471,-0.0751444449858183,20.4445995837314 -00:01:22.6671,69.748339172309,-7.3455738967282,-21.6046291080241,-0.0752182596465023,20.3806874316372 -00:01:22.6982,69.7484446970774,-7.31006939223821,-21.5002040948183,-0.0751827032334062,20.2980764597569 -00:01:22.7293,69.7485496865339,-7.26884712122432,-21.378962121248,-0.0750944762471282,20.2155217617067 -00:01:22.7604,69.748654129366,-7.23189128331538,-21.2702684803394,-0.0750444069305597,20.1330316546966 -00:01:22.8016,69.7487917242167,-7.19203267678399,-21.1530372846588,-0.0750612842656291,20.0238038686131 -00:01:22.8598,69.7489847721926,-7.13841428055382,-20.9953361192759,-0.0751108560588439,19.8694855837723 -00:01:22.9180,69.7491762841856,-7.08006703470776,-20.8237265726699,-0.0751172855849196,19.7151293647685 -00:01:23.0000,69.7494432321226,-6.99443552302185,-20.5718691853584,-0.0750938580168517,19.4977967652736 -00:01:23.0098,69.7494749354661,-6.97610096888412,-20.5179440261298,-0.0750137673789507,19.4718116966961 -00:01:23.0196,69.7495065310586,-6.94764141053483,-20.4342394427495,-0.0748365277508935,19.4458723069867 -00:01:23.0294,69.7495379848867,-6.91281538158555,-20.3318099458399,-0.0745976879232375,19.4200036002507 -00:01:23.0412,69.7495759076229,-6.86982876159049,-20.2053787105603,-0.0742996415079907,19.388751538483 -00:01:23.0580,69.7496290900634,-6.81956522016128,-20.0575447651802,-0.073976696307054,19.3448103588711 -00:01:23.0748,69.7496819569765,-6.78713113822505,-19.9621504065443,-0.073823145269373,19.3010061504213 -00:01:23.0982,69.7497553977487,-6.76853924330785,-19.9074683626701,-0.0738644671938381,19.2399733530941 -00:01:23.1216,69.7498287060372,-6.76576378225156,-19.8993052419164,-0.0740596799041685,19.1788549052654 -00:01:23.1450,69.7499019539692,-6.76125961775135,-19.8860576992687,-0.0742402385863083,19.1175965768606 -00:01:23.1684,69.7499750806592,-6.7452078443084,-19.8388466009071,-0.0743098269509275,19.0562423768613 -00:01:23.1987,69.7500693370936,-6.70962036523206,-19.7341775448002,-0.0742552509981119,18.9768483271773 -00:01:23.2289,69.7501630785854,-6.66905702130639,-19.6148735920776,-0.0741508538007014,18.897525540338 -00:01:23.2592,69.7502563038397,-6.63366512885872,-19.5107797907609,-0.0740965009308446,18.8182755991791 -00:01:23.2979,69.7503747244559,-6.59775267610159,-19.4051549297105,-0.0741189717723707,18.7170871312706 -00:01:23.3499,69.7505330044997,-6.55210325284761,-19.27089192014,-0.0741768005683293,18.5809249204066 -00:01:23.4018,69.7506901033287,-6.501638408933,-19.1224659086265,-0.0741871399080937,18.444718747096 -00:01:23.4686,69.7508899553322,-6.43286412433785,-18.9201886009937,-0.0741599991923689,18.2698679797582 -00:01:23.5000,69.7509830836074,-6.40077277323325,-18.8258022742154,-0.0741492277197442,18.1877716366562 -00:01:23.5074,69.7510052044798,-6.38811297888699,-18.7885675849617,-0.0740948069393386,18.1682113526798 -00:01:23.5149,69.751027267659,-6.36799680719666,-18.7294023741078,-0.0739629818381222,18.1486764344367 -00:01:23.5224,69.7510492516613,-6.34195974048126,-18.6528227661213,-0.0737693903848517,18.1291839414124 -00:01:23.5316,69.7510763822135,-6.30601860679633,-18.547113549401,-0.0734906553851569,18.1050876728549 -00:01:23.5468,69.7511204256145,-6.25035279931395,-18.3833905862175,-0.0730650155713028,18.0658736638496 -00:01:23.5619,69.7511641279764,-6.20672904898898,-18.2550854382029,-0.0727621643158568,18.0268488465606 -00:01:23.5801,69.7512163068394,-6.17666293212249,-18.1666556827132,-0.0726287746751345,17.9801186399924 -00:01:23.6038,69.7512838760584,-6.1650225206512,-18.1324191783859,-0.0727411696602001,17.919410008858 -00:01:23.6274,69.7513513645147,-6.16587404813401,-18.1349236709824,-0.0729864344505098,17.8585690793236 -00:01:23.6511,69.7514188092398,-6.16097263095371,-18.1205077380991,-0.0731738205822524,17.797564759699 -00:01:23.6747,69.7514861179921,-6.14236618325171,-18.0657828919168,-0.0732178033894045,17.7364699427084 -00:01:23.7063,69.7515757951585,-6.10307404409974,-17.9502177767639,-0.0731237111691619,17.6547150514753 -00:01:23.7380,69.751664904245,-6.06156938909214,-17.8281452620357,-0.0730045429871019,17.5730602785004 -00:01:23.7696,69.7517534766419,-6.02764948794534,-17.7283808468981,-0.0729656336667569,17.4914808569546 -00:01:23.8091,69.7518633259257,-5.99412619916007,-17.6297829387061,-0.0730119842480935,17.3897315630303 -00:01:23.8486,69.7519725509149,-5.96137849055716,-17.5334661486975,-0.073067841625662,17.2879263506135 -00:01:23.8976,69.7521073462063,-5.91475303583814,-17.3963324583475,-0.0730731756868478,17.1613934739391 -00:01:23.9655,69.7522920485672,-5.84657631818915,-17.1958127005563,-0.0730399248670029,16.9863544904372 -00:01:24.0000,69.752385151447,-5.81246076304036,-17.0954728324717,-0.0730289252670981,16.8973767800275 -00:01:24.0064,69.7524024400745,-5.80218269601396,-17.0652432235705,-0.0729827147355984,16.8807973399462 -00:01:24.0128,69.7524196880174,-5.78567870495622,-17.0167020734007,-0.072866158833901,16.8642370858368 -00:01:24.0192,69.7524368791434,-5.76379272906976,-16.9523315560875,-0.0726885530111902,16.8477099549918 -00:01:24.0271,69.7524578838115,-5.73275952165729,-16.8610574166391,-0.0724228444959832,16.8274854554128 -00:01:24.0412,69.7524950515697,-5.67695720074058,-16.6969329433546,-0.071941740034068,16.7916116587034 -00:01:24.0553,69.7525318881023,-5.62903158645909,-16.5559752542915,-0.0715471457175574,16.7559497242122 -00:01:24.0694,69.752568465422,-5.59603129836557,-16.4589155834282,-0.0713194072256425,16.7204385909173 -00:01:24.0884,69.7526177084155,-5.57550524798847,-16.3985448470249,-0.0712832107981052,16.6724916568767 -00:01:24.1074,69.7526668443509,-5.5735660681406,-16.3928413768841,-0.0714588875379855,16.6245046251285 -00:01:24.1265,69.7527159739725,-5.57704084052236,-16.403061295654,-0.0716985041195523,16.5763892376568 -00:01:24.1455,69.752765100713,-5.57506810031205,-16.3972591185648,-0.0718779404690337,16.5281413140174 -00:01:24.1645,69.7528141618564,-5.5628139267719,-16.3612174316821,-0.0719403682388202,16.4798147802606 -00:01:24.1935,69.7528885976084,-5.52972762929078,-16.2639047920317,-0.0718689514669027,16.4061978881624 -00:01:24.2225,69.7529625712124,-5.49138003747564,-16.1511177572813,-0.0717350520259929,16.3326710736299 -00:01:24.2515,69.7530360816982,-5.45838915425839,-16.0540857478188,-0.071662234976176,16.2592361295642 -00:01:24.2805,69.753109202436,-5.43301310599573,-15.9794503117521,-0.071678380034247,16.1858281925619 -00:01:24.3249,69.7532204712488,-5.3981626642059,-15.8769490123703,-0.0717512178153633,16.0734305253848 -00:01:24.3693,69.7533309668069,-5.35980450110443,-15.7641308856013,-0.0717836573510547,15.9609694734316 -00:01:24.4136,69.7534406240886,-5.31680762716503,-15.6376694916619,-0.0717606697475593,15.8485036555108 -00:01:24.4819,69.7536076987333,-5.25113538150212,-15.4445158279474,-0.0717307791269709,15.6754535897163 -00:01:24.5000,69.7536514259692,-5.23432397985482,-15.3950705289848,-0.0717290752272119,15.6298164358871 -00:01:24.5063,69.7536668163433,-5.22437098281869,-15.3657970082903,-0.071678873601798,15.6137183821493 -00:01:24.5127,69.7536821672955,-5.20803450729608,-15.3177485508708,-0.0715496904090179,15.597641160353 -00:01:24.5190,69.7536974623526,-5.18614608318701,-15.253370832903,-0.0713515430669298,15.5816003529497 -00:01:24.5254,69.7537126885519,-5.16074800188669,-15.1786705937844,-0.0711094975753687,15.5656082762958 -00:01:24.5380,69.7537427993226,-5.1087228426335,-15.0256554195103,-0.0706078358686932,15.5339109252261 -00:01:24.5533,69.7537788026999,-5.05361917467635,-14.8635858078716,-0.0700943992521545,15.495886186523 -00:01:24.5687,69.7538144830692,-5.01561675263702,-14.7518139783442,-0.0697897531584982,15.4580760455332 -00:01:24.5840,69.7538499638303,-4.99702963428655,-14.6971459831957,-0.0697242671890642,15.4203650141605 -00:01:24.6026,69.7538930124908,-4.99327235203483,-14.6860951530436,-0.0698792385961808,15.3744785182299 -00:01:24.6212,69.7539360544491,-4.9981130791423,-14.7003325857126,-0.0701437851834387,15.3284647934348 -00:01:24.6398,69.7539791138808,-4.99977237360051,-14.7052128635309,-0.0703712314468252,15.2822994256337 -00:01:24.6584,69.7540221415465,-4.9918068550849,-14.6817848678968,-0.0704793631488728,15.2360283232265 -00:01:24.6833,69.7540794415525,-4.96708498244331,-14.6090734777744,-0.0704463998171978,15.1741733526393 -00:01:24.7081,69.7541364233876,-4.93467572025731,-14.5137521184039,-0.0703147219080475,15.1123806297687 -00:01:24.7330,69.7541930537645,-4.90392636330408,-14.4233128332473,-0.0702026737354969,15.0506832646773 -00:01:24.7578,69.7542493715559,-4.87950428353498,-14.3514831868676,-0.070170841172041,14.9890441247906 -00:01:24.7946,69.7543320917478,-4.85122831253841,-14.2683185662894,-0.0702245403683034,14.8980035517644 -00:01:24.8313,69.7544143242548,-4.82395188883287,-14.1880937906849,-0.0702925568868903,14.8068991270571 -00:01:24.8680,69.7544960471861,-4.79245260047093,-14.0954488249145,-0.0703062282485002,14.7157517873632 -00:01:24.9200,69.7546109341563,-4.74367892387838,-13.9519968349364,-0.0702711168991023,14.5865571603485 -00:01:24.9721,69.7547246724134,-4.6958081278963,-13.8112003761656,-0.0702474202221838,14.4574008918113 -00:01:25.0000,69.7547850743864,-4.67144373583575,-13.7395403995169,-0.0702515680263876,14.3882917776692 -00:01:25.0050,69.7547960662656,-4.66442639913771,-13.7189011739344,-0.070217443964964,14.3756756659944 -00:01:25.0101,69.7548070360041,-4.65297794349803,-13.6852292455824,-0.0701229774411376,14.3630715199387 -00:01:25.0152,69.7548179739198,-4.63729432237453,-13.6391009481604,-0.0699706609040809,14.3504894146585 -00:01:25.0203,69.7548288715429,-4.61847174411528,-13.5837404238685,-0.0697752846748701,14.3379381914282 -00:01:25.0320,69.7548538166745,-4.57066646256791,-13.4431366546115,-0.069263200807646,14.3091459271421 -00:01:25.0465,69.7548842215088,-4.51348385871425,-13.2749525256302,-0.0686524833205273,14.2739337018256 -00:01:25.0609,69.7549142929045,-4.46871040915488,-13.143265909279,-0.0682074028990086,14.2389829188005 -00:01:25.0754,69.7549441279649,-4.44188538889304,-13.0643687908619,-0.0680045689412903,14.2041940569374 -00:01:25.0949,69.7549841838019,-4.43029864629578,-13.0302901361641,-0.0680659233037937,14.1573347629421 -00:01:25.1144,69.7550241950718,-4.4345851291077,-13.042897438552,-0.0683469881870407,14.1103694298631 -00:01:25.1339,69.7550642353977,-4.43997686830995,-13.0587554950293,-0.0686469922757748,14.063219270145 -00:01:25.1534,69.7551042756557,-4.43645804296876,-13.0484060087316,-0.0688265767920128,14.0159131268165 -00:01:25.1729,69.7551442314934,-4.42140946176239,-13.0041454757717,-0.0688468439367181,13.968539103362 -00:01:25.1994,69.755198349507,-4.38996041373352,-12.9116482756868,-0.0687203561281397,13.9040849607406 -00:01:25.2259,69.7552520848636,-4.35668207148915,-12.8137707984975,-0.0685660895290729,13.8397465548027 -00:01:25.2525,69.7553054593235,-4.3295314677208,-12.7339160815318,-0.0684967885391908,13.7755017112722 -00:01:25.2790,69.7553585421075,-4.30925376420889,-12.674275777085,-0.0685248953673488,13.7112762686285 -00:01:25.3156,69.7554313452097,-4.28438273638883,-12.6011256952613,-0.0686091501374776,13.6226545836011 -00:01:25.3522,69.7555036885799,-4.25657753476941,-12.5193456904983,-0.0686525947772397,13.533965119804 -00:01:25.3888,69.7555755222321,-4.22447166246296,-12.4249166543028,-0.0686338659183636,13.44526236987 -00:01:25.4467,69.7556881384545,-4.1728140571234,-12.2729825209512,-0.0685912230274365,13.3048767663127 -00:01:25.5000,69.7557903755753,-4.12775022157524,-12.1404418281625,-0.0685868097832476,13.1759903442153 -00:01:25.5046,69.7557991760797,-4.12181939962483,-12.1229982341907,-0.0685558870804979,13.1648300274497 -00:01:25.5092,69.7558079596839,-4.11220907837559,-12.0947325834576,-0.0684694131636707,13.1536796361333 -00:01:25.5138,69.7558167189511,-4.09894915351179,-12.0557328044465,-0.0683276857458724,13.1425477479184 -00:01:25.5184,69.7558254471276,-4.08284850949538,-12.008377969104,-0.0681427947127325,13.1314421747411 -00:01:25.5285,69.7558445442933,-4.04265017776034,-11.8901475816481,-0.0676627901518585,13.1070939650879 -00:01:25.5420,69.7558696150635,-3.98822494359058,-11.7300733635017,-0.0670065768112686,13.0750240075039 -00:01:25.5555,69.755894378815,-3.94216753452115,-11.5946103956504,-0.0664731758401064,13.0432296675861 -00:01:25.5690,69.7559189054661,-3.91102516847353,-11.5030152013927,-0.0661620233318513,13.0116319127666 -00:01:25.5855,69.7559487008602,-3.89389829794144,-11.4526420527689,-0.0660962316081042,12.9731194606906 -00:01:25.6020,69.7559784237823,-3.89343444771174,-11.4512777873875,-0.0662836291027894,12.9345775804847 -00:01:25.6184,69.7560081611792,-3.89989042539684,-11.4702659570495,-0.0665791749639575,12.8959046882414 -00:01:25.6349,69.7560379331514,-3.90427851469829,-11.4831721020538,-0.0668464327686039,12.8570758913161 -00:01:25.6514,69.7560677068366,-3.90119295712996,-11.4740969327352,-0.0670012219320223,12.8181281821607 -00:01:25.6728,69.7561062791566,-3.88509151609646,-11.4267397532249,-0.0670166445612634,12.7674816411312 -00:01:25.6942,69.7561446547194,-3.86036584677064,-11.3540171963842,-0.0668974784566134,12.7168680012554 -00:01:25.7156,69.7561827855033,-3.834084705235,-11.2767197212794,-0.066752351375538,12.6663448894999 -00:01:25.7370,69.7562206792087,-3.81148994162958,-11.2102645342046,-0.0666634742585642,12.6159040691181 -00:01:25.7650,69.7562698989821,-3.78927381230178,-11.1449229773582,-0.0666615821380667,12.5500460342797 -00:01:25.8026,69.7563356574047,-3.76485276483679,-11.073096367167,-0.066746450698812,12.4614595795219 -00:01:25.8402,69.7564009619864,-3.73892093277171,-10.996826272858,-0.0668090415488071,12.3727939505363 -00:01:25.8778,69.7564657713136,-3.70857025126186,-10.9075595625349,-0.0668010309749797,12.2840989457611 -00:01:25.9365,69.7565658644464,-3.65912873305791,-10.7621433325233,-0.0667540396983327,12.1456907361102 -00:01:26.0000,69.7566726028922,-3.60813653285883,-10.6121662731142,-0.0667428954232017,11.9961214442127 -00:01:26.0040,69.7566794042924,-3.60334054531395,-10.598060427394,-0.0667165728818241,11.9865196940961 -00:01:26.0081,69.7566861936863,-3.59568246710401,-10.575536667953,-0.0666419916837855,11.976925539114 -00:01:26.0122,69.7566929658559,-3.58506780674763,-10.5443170786695,-0.0665174332154935,11.9673457008842 -00:01:26.0162,69.7566997158622,-3.57203397733022,-10.5059822862654,-0.0663518570776322,11.9577865569141 -00:01:26.0248,69.756713749345,-3.54029605426513,-10.412635453721,-0.0659291004088151,11.9378760826919 -00:01:26.0373,69.7567342092959,-3.49012912381318,-10.2650856582741,-0.0652462488570946,11.9087552697094 -00:01:26.0499,69.756754395146,-3.44427539866901,-10.1302217607912,-0.0646326850637294,11.8799154000067 -00:01:26.0625,69.7567743512091,-3.40976585173411,-10.0287230933356,-0.0642069890192957,11.8513009680571 -00:01:26.0751,69.7567941482385,-3.38927999711845,-9.96847057976014,-0.0640152688987611,11.8228222403799 -00:01:26.0918,69.7568203758784,-3.38050016881921,-9.94264755535062,-0.0640711413708478,11.7849705308096 -00:01:26.1085,69.756846578865,-3.38462880205137,-9.95479059426875,-0.0643477438534802,11.7470289288464 -00:01:26.1252,69.756872816211,-3.39157817538046,-9.97522992758959,-0.0646763619015478,11.70891947301 -00:01:26.1420,69.7568990824862,-3.39357634365478,-9.98110689310229,-0.0649239479877545,11.6706473253086 -00:01:26.1587,69.7569253297416,-3.38710930535507,-9.96208619222079,-0.0650279317190266,11.6322737611709 -00:01:26.1824,69.7569623492136,-3.36603789767543,-9.90011146375128,-0.0649693637685893,11.5779110159981 -00:01:26.2061,69.7569991118762,-3.33864529867413,-9.81954499610037,-0.0647989680207794,11.5236325055056 -00:01:26.2298,69.7570355936155,-3.31302673453633,-9.74419627804802,-0.0646572362755792,11.4694715912553 -00:01:26.2535,69.7570718296085,-3.29312556170913,-9.68566341679156,-0.0646146837811548,11.415382413011 -00:01:26.2856,69.7571207180678,-3.27277096439298,-9.625796954097,-0.0646750990798846,11.3419494204792 -00:01:26.3178,69.7571693034918,-3.25382615010002,-9.57007691205888,-0.064762437574206,11.2684464350138 -00:01:26.3499,69.7572175759648,-3.2317446392301,-9.50513129185323,-0.064794705450564,11.1948859173653 -00:01:26.3915,69.7572794386386,-3.19915633852502,-9.40928334860301,-0.0647629192963933,11.0998140521444 -00:01:26.4426,69.7573546400644,-3.15894262551639,-9.29100772210704,-0.0647198898731994,10.9829889822647 -00:01:26.4937,69.7574289265327,-3.12110914000691,-9.1797327647262,-0.0647206259115318,10.8661904382783 -00:01:26.5000,69.7574379563839,-3.11667314269919,-9.16668571382115,-0.0647244046610183,10.8518961844332 -00:01:26.5040,69.7574437400323,-3.11231006708071,-9.15385313847267,-0.064698073175834,10.8427292993093 -00:01:26.5080,69.757449512848,-3.10522716068674,-9.13302106084336,-0.0646200789213692,10.8335701021315 -00:01:26.5120,69.7574552699184,-3.09533391466988,-9.10392327844082,-0.0644885649814452,10.8244257211699 -00:01:26.5160,69.7574610066008,-3.0831298059605,-9.0680288410603,-0.0643129136179573,10.8153029097321 -00:01:26.5240,69.757472398857,-3.05461859833776,-8.98417234805222,-0.0638826701746866,10.797151743193 -00:01:26.5359,69.7574890966484,-3.00876709495733,-8.84931498516861,-0.063174315903757,10.7704603347403 -00:01:26.5478,69.7575055542228,-2.96582427463515,-8.72301257245631,-0.0625178566208376,10.7440493991509 -00:01:26.5597,69.7575218043284,-2.93215233895107,-8.62397746750314,-0.062033797130963,10.7178729529666 -00:01:26.5716,69.7575379036408,-2.91064613436752,-8.56072392461036,-0.0617775719286247,10.6918503043502 -00:01:26.5883,69.7575603249428,-2.8990184519394,-8.5265248586453,-0.0617677629683519,10.6554815751489 -00:01:26.6049,69.7575827064614,-2.90176722120841,-8.53460947414237,-0.0620332961599025,10.6190453404394 -00:01:26.6216,69.7576051187631,-2.90917011892747,-8.55638270272785,-0.0623923958651711,10.5824372990823 -00:01:26.6383,69.7576275685448,-2.91308325272801,-8.56789191978825,-0.0626890007151631,10.5456453925957 -00:01:26.6549,69.7576500161137,-2.90922102191755,-8.55653241740455,-0.0628379344872549,10.5087261551423 -00:01:26.6759,69.7576781996391,-2.89371061437827,-8.51091357170078,-0.0628190378950302,10.4621699166127 -00:01:26.6969,69.7577062052233,-2.87143575775351,-8.44539928751032,-0.0626661719118055,10.4156692213777 -00:01:26.7179,69.7577339990458,-2.84871465487033,-8.37857251432449,-0.062502176786652,10.3692757680397 -00:01:26.7389,69.7577615944053,-2.82978377913059,-8.32289346803114,-0.062411371482972,10.3229707682674 -00:01:26.7653,69.7577961558762,-2.81213162770489,-8.27097537560262,-0.0624198427536566,10.2646393706142 -00:01:26.7982,69.7578388781701,-2.79426163402906,-8.21841657067371,-0.062513856222712,10.1920171111614 -00:01:26.8312,69.757881308815,-2.77518420985761,-8.1623064995812,-0.0625855829802384,10.1193139533022 -00:01:26.8641,69.757923417961,-2.75254488266593,-8.09572024313509,-0.0625853773271028,10.0465751446263 -00:01:26.9136,69.7579861476859,-2.71602517333391,-7.98830933333503,-0.0625339430847909,9.93709025062954 -00:01:26.9632,69.7580480660641,-2.68080843634072,-7.88473069511976,-0.0625085440800811,9.82765436087508 -00:01:27.0000,69.7580934796338,-2.65617736445528,-7.81228636604495,-0.0625212764826717,9.74649749086348 -00:01:27.0034,69.7580977100663,-2.65289132580186,-7.80262154647605,-0.0625013871977783,9.73889803029916 -00:01:27.0068,69.7581019336394,-2.64768128658185,-7.78729790171132,-0.0624399543370326,9.73130366343568 -00:01:27.0103,69.7581061472641,-2.64039255893615,-7.76586046745927,-0.0623335324704788,9.72371948349478 -00:01:27.0137,69.7581103479122,-2.63130687195427,-7.73913785868902,-0.0621881222067138,9.71615049465053 -00:01:27.0202,69.7581182554095,-2.61075442480116,-7.6786894847093,-0.0618397941909122,9.70187843179099 -00:01:27.0250,69.7581240244574,-2.59451279833622,-7.63091999510652,-0.0615586522384229,9.69144519546485 -00:01:27.0250,69.7581240244574,-2.59451453774296,-7.6309251110087,-0.061558652238366,9.69144519546287 -00:01:27.0306,69.7581306862735,-2.5735045823052,-7.56913112442705,-0.0611853480105793,9.67936315207566 -00:01:27.0362,69.7581372957183,-2.55327315670246,-7.50962693147781,-0.0608280641527257,9.66735166020465 -00:01:27.0418,69.7581438564842,-2.5344682025845,-7.4543182428956,-0.0605007261421589,9.65540480655464 -00:01:27.0474,69.7581503734881,-2.51756262313671,-7.40459595040209,-0.060213488597123,9.64351467263565 -00:01:27.0530,69.7581568621723,-2.50214676179978,-7.35925518176406,-0.0599576472196426,9.63166052271762 -00:01:27.0633,69.7581687339143,-2.47938230030018,-7.29230088323583,-0.0596057288924259,9.60992212786909 -00:01:27.0800,69.7581878691548,-2.4583420881593,-7.23041790635087,-0.0593736451794374,9.57475098264571 -00:01:27.0967,69.7582069054507,-2.45337424045259,-7.21580658956644,-0.0594874038014763,9.53961277886016 -00:01:27.1135,69.7582259311079,-2.45732150269911,-7.22741618440915,-0.0597975888199424,9.50435998653262 -00:01:27.1302,69.7582449845152,-2.46230775733775,-7.24208163922868,-0.0601355878431109,9.46892677066808 -00:01:27.1469,69.7582640541755,-2.46259050282129,-7.24291324359203,-0.0603747406074472,9.43333001199699 -00:01:27.1637,69.7582830979805,-2.45587612262879,-7.22316506655527,-0.0604614961951458,9.39763876570681 -00:01:27.1879,69.7583105031268,-2.43674436392823,-7.1668951880242,-0.0603774051527654,9.34600408830971 -00:01:27.2121,69.758337676573,-2.41311211339256,-7.09738856880165,-0.0601899064530961,9.29447237504766 -00:01:27.2363,69.7583646052874,-2.391620457566,-7.03417781637059,-0.0600476224207556,9.24306772945414 -00:01:27.2605,69.7583913237883,-2.37511109571482,-6.98562086974948,-0.0600167906201343,9.19173213687905 -00:01:27.2930,69.7584269702364,-2.35802023243503,-6.93535362480892,-0.0600924933758212,9.12273057873319 -00:01:27.3256,69.7584623546506,-2.34150780803578,-6.88678767069346,-0.0601839420413133,9.05364847210071 -00:01:27.3581,69.7584974632091,-2.32213946270583,-6.82982194913478,-0.0602103680022393,8.98450888835566 -00:01:27.3991,69.7585412374422,-2.29467709923334,-6.74905029186278,-0.0601710399111719,8.89743909656063 -00:01:27.4400,69.758584497504,-2.26714663184483,-6.66807832895539,-0.0601287768887248,8.81041539703625 -00:01:27.4910,69.7586376808729,-2.2350483113302,-6.57367150391236,-0.0601285027136148,8.7020519689482 -00:01:27.5000,69.7586468815502,-2.22969481918614,-6.55792593878276,-0.0601345641970912,8.68314675696693 -00:01:27.5033,69.7586503233346,-2.22679059139242,-6.54938409233064,-0.0601146101205457,8.67606240075162 -00:01:27.5066,69.758653759217,-2.22218664179588,-6.53584306410552,-0.0600524655046117,8.66898307899369 -00:01:27.5100,69.7586571865515,-2.21572730225738,-6.51684500663936,-0.0599441581451349,8.66191380745697 -00:01:27.5133,69.7586606027095,-2.20764297813278,-6.49306758274348,-0.0597953267042846,8.65485957995385 -00:01:27.5193,69.7586667560824,-2.19005848511735,-6.44134848563927,-0.0594521628193693,8.64213137713371 -00:01:27.5299,69.7586773792671,-2.15457362547811,-6.3369812514062,-0.0587325203887544,8.62008706458603 -00:01:27.5405,69.758687828284,-2.11786096017279,-6.22900282403761,-0.0579799235973461,8.59831287274657 -00:01:27.5510,69.7586981105085,-2.08524610735233,-6.13307678633038,-0.057325690371879,8.57679594024469 -00:01:27.5616,69.7587082533162,-2.06022426507222,-6.05948313256535,-0.0568555567031784,8.55548588044341 -00:01:27.5743,69.7587203436495,-2.04197224477532,-6.00580071992742,-0.056578666383741,8.52998470653043 -00:01:27.5871,69.7587323602026,-2.03547911472823,-5.98670327861245,-0.0565901279299286,8.5045447420186 -00:01:27.5998,69.7587443609163,-2.03741444501556,-5.99239542651637,-0.0568114350332769,8.47905685037569 -00:01:27.6125,69.7587563823305,-2.04342420169515,-6.01007118145631,-0.057137746359842,8.45345089113648 -00:01:27.6252,69.7587684367898,-2.04939681134169,-6.02763768041674,-0.0574677205611056,8.42770172010328 -00:01:27.6380,69.7587805161262,-2.05234610714981,-6.03631207985239,-0.0577255766169438,8.40182322438797 -00:01:27.6540,69.7587957749871,-2.04962457612606,-6.02830757684136,-0.0578913251643962,8.36901414542911 -00:01:27.6764,69.7588169197882,-2.03569976247504,-5.98735224257366,-0.0578646341181524,8.32330844143938 -00:01:27.6988,69.7588378927983,-2.01534815246241,-5.92749456606593,-0.0576705657816811,8.27767928712124 -00:01:27.7211,69.7588586624682,-1.99500746531288,-5.86766901562612,-0.0574731526442332,8.23219039688633 -00:01:27.7435,69.7588792463331,-1.97870415374625,-5.81971809925368,-0.0573780758890252,8.18680905442405 -00:01:27.7659,69.7588996842041,-1.9668886861671,-5.78496672402088,-0.0573999235976882,8.14145710263404 -00:01:27.7944,69.7589255462512,-1.95468581142537,-5.74907591595696,-0.0575045657870055,8.08365292134704 -00:01:27.8229,69.7589512366297,-1.94176231058608,-5.71106561937081,-0.0575926346014783,8.02576379190242 -00:01:27.8513,69.7589767361879,-1.92614120572314,-5.66512119330335,-0.0576093780319192,7.96782748755906 -00:01:27.8914,69.7590122357368,-1.90154847244171,-5.59278962482856,-0.0575610288691058,7.88634596987669 -00:01:27.9315,69.7590472877731,-1.87715501936578,-5.52104417460523,-0.0575165564227085,7.80491606225345 -00:01:27.9716,69.7590819062367,-1.85446507732459,-5.45430905095469,-0.0575191648070391,7.72350884250678 -00:01:28.0000,69.7591061823472,-1.83907849014032,-5.40905438276564,-0.0575410311007464,7.66582087253776 -00:01:28.0032,69.7591089205444,-1.83657792320673,-5.40169977413745,-0.0575217501904028,7.65928215623907 -00:01:28.0064,69.7591116538707,-1.83261307436824,-5.39003845402424,-0.0574601808503391,7.65274815764587 -00:01:28.0096,69.7591143800953,-1.82703730460724,-5.37363913119776,-0.057351977463026,7.64622379601856 -00:01:28.0128,69.7591170969977,-1.82003683193468,-5.35304950569025,-0.0572024415798643,7.63971397900528 -00:01:28.0184,69.759121772286,-1.8054540808896,-5.31015906143999,-0.0568718886310568,7.62849225090578 -00:01:28.0284,69.7591300462068,-1.77496554208921,-5.22048688849766,-0.0561521571421027,7.60856796045271 -00:01:28.0384,69.7591381769153,-1.74273277519984,-5.1256846329407,-0.0553801634358642,7.58890280695101 -00:01:28.0484,69.7591461670028,-1.71318255687557,-5.03877222610462,-0.0546827516558774,7.56949195321652 -00:01:28.0583,69.7591540352123,-1.68942911589106,-4.96890916438548,-0.0541482662022362,7.55029543118735 -00:01:28.0683,69.7591618110633,-1.67303259253369,-4.92068409568734,-0.0538209286901538,7.53124990866862 -00:01:28.0829,69.7591730404313,-1.66181105378471,-4.88767956995502,-0.0537023550912444,7.50363367950763 -00:01:28.0974,69.7591842306196,-1.66203197704397,-4.88832934424697,-0.0539118254711383,7.47599857715984 -00:01:28.1119,69.7591954378357,-1.66814725624538,-4.90631545954524,-0.054296035839091,7.44822018016077 -00:01:28.1265,69.759206683627,-1.67462242040904,-4.92536006002659,-0.0546977224128634,7.42024830894487 -00:01:28.1410,69.7592179584782,-1.67746460048724,-4.93371941319776,-0.0549991886588473,7.39210118242567 -00:01:28.1555,69.7592292335783,-1.67488289655889,-4.92612616634969,-0.0551441654941651,7.36384112470781 -00:01:28.1754,69.7592445875479,-1.66364714448739,-4.89307983672763,-0.055114443446063,7.32515761528442 -00:01:28.1953,69.7592598183581,-1.64730843341255,-4.84502480415457,-0.0549298536572607,7.28654125498352 -00:01:28.2152,69.759274901302,-1.63048981353358,-4.79555827509877,-0.0547273107660456,7.24805012538717 -00:01:28.2350,69.7592898448655,-1.61640638207351,-4.75413641786327,-0.0546046674981808,7.20966655392732 -00:01:28.2549,69.7593046757621,-1.6059450863494,-4.72336790102765,-0.0545911778785639,7.17132992033178 -00:01:28.2833,69.7593256979199,-1.59461353121274,-4.69003979768453,-0.05468370481214,7.11657960381706 -00:01:28.3117,69.7593465688847,-1.58376208482327,-4.65812377889197,-0.0547942455488206,7.06174026671864 -00:01:28.3400,69.7593672794178,-1.57074646434953,-4.61984254220449,-0.054839095349773,7.00683206341284 -00:01:28.3684,69.7593878049072,-1.5555244789871,-4.57507199702088,-0.054814077117714,6.95191336742345 -00:01:28.4067,69.759415197675,-1.53430006736607,-4.51264725695904,-0.0547570855371564,6.87781224781145 -00:01:28.4450,69.7594422285455,-1.51422371784621,-4.45359917013591,-0.0547361167680223,6.80375330095347 -00:01:28.4923,69.759475128076,-1.49096135172491,-4.38518044624973,-0.0547610331009272,6.71231217088658 -00:01:28.5000,69.7594804136025,-1.48730695565743,-4.37443222252184,-0.0547691792082196,6.69748406719711 -00:01:28.5026,69.7594822378436,-1.48558957469631,-4.36938110204796,-0.0547565823099036,6.69235727699503 -00:01:28.5053,69.7594840593935,-1.48298132910917,-4.36170979149755,-0.0547136349216066,6.68723318396795 -00:01:28.5079,69.7594858771044,-1.47934399990821,-4.35101176443591,-0.0546355506363133,6.68211477446019 -00:01:28.5106,69.7594876897829,-1.47475141069908,-4.33750414911496,-0.0545247868320504,6.67700515892822 -00:01:28.5149,69.7594906719497,-1.46549193899993,-4.31027040882332,-0.0542845130812549,6.6685864806513 -00:01:28.5243,69.7594969661768,-1.44134381437053,-4.23924651285449,-0.0536210147451748,6.65076259091424 -00:01:28.5337,69.7595031501078,-1.41409415999786,-4.15910047058195,-0.0528506926861082,6.63317291115393 -00:01:28.5430,69.7595092190858,-1.3874542203872,-4.08074770702118,-0.052099492006968,6.61583003460458 -00:01:28.5524,69.7595151814948,-1.36432428031962,-4.0127184715283,-0.0514643775084256,6.59871307085257 -00:01:28.5617,69.7595210558863,-1.3465394871999,-3.96041025647029,-0.0510059316080517,6.58177528504881 -00:01:28.5738,69.759528538758,-1.33247587741382,-3.91904669827593,-0.050708052393618,6.56010520616386 -00:01:28.5858,69.7595359676767,-1.32740622732074,-3.90413596270806,-0.0507095404259442,6.53849954263909 -00:01:28.5979,69.7595433850162,-1.32892284886398,-3.90859661430582,-0.0509339938264587,6.51684982834549 -00:01:28.6100,69.7595508185247,-1.33386791077256,-3.92314091403694,-0.0512790306882283,6.49508348848586 -00:01:28.6220,69.7595582791096,-1.33919235022348,-3.93880103006905,-0.0516430252980548,6.47317023847499 -00:01:28.6341,69.7595657629572,-1.34257837185162,-3.94875991721065,-0.0519459424181692,6.45111779910438 -00:01:28.6461,69.7595732562318,-1.34272867936165,-3.94920199812251,-0.0521405859832157,6.42896072366368 -00:01:28.6632,69.7595838322522,-1.33720217580226,-3.93294757588899,-0.052218118443206,6.39754291452222 -00:01:28.6802,69.7595943460703,-1.32664507829283,-3.90189728909656,-0.052118220338384,6.36612870701868 -00:01:28.6973,69.759604769876,-1.31377624901891,-3.8640477912321,-0.0519338889688562,6.33479360866498 -00:01:28.7144,69.7596150955134,-1.30124268829431,-3.82718437733622,-0.0517584305416797,6.30356111833067 -00:01:28.7314,69.7596253312812,-1.29073445819355,-3.79627781821632,-0.0516530631573989,6.2724101026249 -00:01:28.7534,69.7596384475594,-1.28060575556154,-3.76648751635748,-0.0516396960536123,6.23221885561573 -00:01:28.7805,69.7596544168575,-1.27117654429295,-3.73875454203808,-0.051733660047678,6.18287124221946 -00:01:28.8075,69.7596702658034,-1.26204714705286,-3.71190337368489,-0.0518419469354303,6.13343862859764 -00:01:28.8345,69.7596859871188,-1.25119771639159,-3.67999328350467,-0.0518885984799486,6.08393965089474 -00:01:28.8671,69.7597047259121,-1.23594838382375,-3.63514230536398,-0.0518628130829261,6.02430910707513 -00:01:28.8996,69.7597232329873,-1.22004499274324,-3.5883676257154,-0.0518105393492119,5.96471501098636 -00:01:28.9322,69.75974150876,-1.20492525918265,-3.54389782112544,-0.0517873355251548,5.90515699319122 -00:01:28.9757,69.7597655778249,-1.18601729625424,-3.48828616545366,-0.0518071395567726,5.82560585755959 -00:01:29.0000,69.7597788502925,-1.17572502368073,-3.45801477553156,-0.0518295001037089,5.78117765170283 -00:01:29.0025,69.7597802584226,-1.17424800865828,-3.45367061370083,-0.0518164345068183,5.77644003956448 -00:01:29.0051,69.7597816643132,-1.17201902335052,-3.44711477456035,-0.0517726105588434,5.77170508837848 -00:01:29.0077,69.7597830670081,-1.16891775853859,-3.43799340746645,-0.0516930263000082,5.76697578493795 -00:01:29.0103,69.7597844655137,-1.16500267006754,-3.4264784413751,-0.0515800183674647,5.76225523825532 -00:01:29.0144,69.7597866634724,-1.15747849773733,-3.40434852275686,-0.051346390543926,5.75482464819423 -00:01:29.0232,69.7597913574973,-1.13757196870367,-3.34579990795196,-0.0506914490568129,5.73890432605855 -00:01:29.0321,69.7597959650045,-1.11484668244018,-3.27896083070641,-0.0499209431056945,5.72320424445754 -00:01:29.0409,69.7598004809327,-1.09217365340445,-3.21227545118956,-0.0491519666917227,5.70774036752953 -00:01:29.0497,69.759804909911,-1.07188574506988,-3.15260513255846,-0.048477752062204,5.69249884523787 -00:01:29.0586,69.7598092645326,-1.05557805804032,-3.1046413471774,-0.0479607674002906,5.67744170792122 -00:01:29.0695,69.7598145899963,-1.04198254590091,-3.06465454676738,-0.0475806212611791,5.65893960024356 -00:01:29.0805,69.759819864286,-1.0354715078433,-3.04550443483323,-0.047480119711092,5.64053097913886 -00:01:29.0915,69.7598251193122,-1.03473802362783,-3.04334712831714,-0.0476104856336056,5.62211912360833 -00:01:29.1024,69.7598303789941,-1.03774981181702,-3.0522053288736,-0.0478945377065266,5.60363032979837 -00:01:29.1134,69.7598356567706,-1.04229565698065,-3.0655754617078,-0.0482462085655543,5.58502171310587 -00:01:29.1244,69.759840955755,-1.04644263190015,-3.07777244676516,-0.0485877704510618,5.56628154947056 -00:01:29.1353,69.7598462707652,-1.04881768153468,-3.0847578868667,-0.0488616316057711,5.54742398913082 -00:01:29.1494,69.7598531061844,-1.04820001192736,-3.08294121155106,-0.0490658937052883,5.52307305219507 -00:01:29.1686,69.7598624048432,-1.04132372597988,-3.06271684111729,-0.049094424112281,5.48974838571508 -00:01:29.1879,69.7598716242357,-1.02990807534125,-3.02914139806249,-0.0489289233284991,5.45646377553649 -00:01:29.2071,69.7598807398432,-1.0172711598513,-2.99197399956266,-0.0487071069942337,5.42330018896669 -00:01:29.2263,69.7598897517438,-1.00609099405848,-2.95909115899553,-0.0485437446216116,5.39025969752705 -00:01:29.2456,69.7598986763661,-0.997519183219495,-2.93387995064557,-0.0484908062058182,5.35729022978474 -00:01:29.2711,69.75991040526,-0.989225215033912,-2.90948592657033,-0.048554738501664,5.3135883660129 -00:01:29.2966,69.7599220401343,-0.982106999176438,-2.88854999757776,-0.0486738062076762,5.26981393534887 -00:01:29.3221,69.7599335827934,-0.974059151447346,-2.86487985719808,-0.0487546832225557,5.22595868373926 -00:01:29.3476,69.7599450202552,-0.964387687863278,-2.83643437606846,-0.0487633173933164,5.18206561400008 -00:01:29.3866,69.7599622847047,-0.94814155702209,-2.78865163830026,-0.0487085517931351,5.11494486938127 -00:01:29.4256,69.7599792623123,-0.932154174738178,-2.74162992570052,-0.0486634386474676,5.0478784794769 -00:01:29.4646,69.75999596299,-0.917279667065796,-2.69788137372293,-0.048670717177545,4.98083160782757 -00:01:29.5000,69.7600108798152,-0.904266994476175,-2.65960880728287,-0.0487016769160515,4.92000466860974 -00:01:29.5023,69.7600118762665,-0.903131216812992,-2.65626828474409,-0.0486908410157869,4.91590870754038 -00:01:29.5047,69.7600128711638,-0.901450344946204,-2.65132454395942,-0.0486527009987039,4.91181481463504 -00:01:29.5071,69.7600138638533,-0.899124415826998,-2.64448357596176,-0.0485821746632777,4.90772548849059 -00:01:29.5095,69.7600148536497,-0.896185151965782,-2.6358386822523,-0.0484808030852853,4.90364335520349 -00:01:29.5131,69.7600163426919,-0.890771955379321,-2.61991751582153,-0.0482787213627294,4.8974927850338 -00:01:29.5214,69.7600197489948,-0.875192971016928,-2.5740969735792,-0.0476576486699716,4.88337641860323 -00:01:29.5297,69.7600230904016,-0.856923695160701,-2.52036380929618,-0.0469025231364289,4.86946098060053 -00:01:29.5381,69.7600263612572,-0.838139452593904,-2.46511603704089,-0.0461225298595989,4.85576787458536 -00:01:29.5464,69.7600295629213,-0.820690037136095,-2.41379422687087,-0.0454081215574493,4.84229203387403 -00:01:29.5548,69.7600327029096,-0.805948535525043,-2.3704368691913,-0.0448245149424162,4.82900568012891 -00:01:29.5631,69.760035793025,-0.794740071275971,-2.3374707978705,-0.0444099141570213,4.81586557787975 -00:01:29.5748,69.7600400922867,-0.78527938282554,-2.30964524360453,-0.0441277114357519,4.79749048106228 -00:01:29.5866,69.7600443574339,-0.782332676235139,-2.30097845951511,-0.044158071361698,4.77916892987663 -00:01:29.5983,69.7600486179773,-0.784040968481225,-2.30600284847419,-0.0444168260935892,4.76079172916499 -00:01:29.6101,69.7600528928243,-0.7880852065737,-2.31789766639323,-0.0447965805525687,4.742286840325 -00:01:29.6218,69.7600571889767,-0.792282395062244,-2.33024233841837,-0.0451924923708799,4.72362514251862 -00:01:29.6336,69.7600615032258,-0.795002542573292,-2.33824277227439,-0.0455223568774911,4.70481571626152 -00:01:29.6453,69.7600658255145,-0.795346412971267,-2.33925415579784,-0.0457374100685507,4.68589458677881 -00:01:29.6608,69.7600715074272,-0.792002865230804,-2.32942019185531,-0.0458300660029146,4.66089015777795 -00:01:29.6763,69.7600771540462,-0.785291726399073,-2.30968154823257,-0.0457487040187286,4.63588020348722 -00:01:29.6917,69.760082747478,-0.776786534950468,-2.28466627926608,-0.0455713019618634,4.61093596086207 -00:01:29.7072,69.7600882805966,-0.768119184115156,-2.25917407092693,-0.0453818936760557,4.58608722060157 -00:01:29.7227,69.7600937560589,-0.760482676318549,-2.23671375387809,-0.0452435828162464,4.56132500301378 -00:01:29.7413,69.7601002779746,-0.753320582769789,-2.21564877285232,-0.0451819107969002,4.53160801820316 -00:01:29.7680,69.7601095543192,-0.745810844681292,-2.19356130788615,-0.0452418535948464,4.48892804134169 -00:01:29.7947,69.7601187420506,-0.739444323650937,-2.17483624603217,-0.0453676882076418,4.44617124074753 -00:01:29.8214,69.7601278433205,-0.732261065790684,-2.15370901703142,-0.0454527965243775,4.40332593333643 -00:01:29.8482,69.7601368462654,-0.723644342986687,-2.12836571466673,-0.0454592846872855,4.36044038135918 -00:01:29.8863,69.7601495152605,-0.710202923364777,-2.08883212754346,-0.0454025839173895,4.29919774141231 -00:01:29.9245,69.7601619523551,-0.697029094669305,-2.05008557255678,-0.0453586080719572,4.23800884339348 -00:01:29.9627,69.7601741657333,-0.684749989595316,-2.01397055763328,-0.0453669813895156,4.17683805237971 -00:01:30.0000,69.7601858799572,-0.673149997781372,-1.9798529346511,-0.0453999672950373,4.11710737338418 -00:01:30.0021,69.7601865432052,-0.672320081499888,-1.97741200441144,-0.0453914389485736,4.11369328461189 -00:01:30.0042,69.760187205461,-0.671129130156392,-1.97390920634233,-0.0453602165523783,4.11028067591946 -00:01:30.0068,69.7601880028767,-0.669110029944691,-1.96797067630791,-0.0452858775748332,4.10616653095101 -00:01:30.0094,69.7601887975372,-0.666487272387742,-1.96025668349336,-0.0451734360171619,4.10206083239471 -00:01:30.0126,69.7601897921347,-0.66245577575853,-1.94839934046626,-0.0449857662694582,4.09691353085884 -00:01:30.0199,69.7601920211093,-0.651182406249132,-1.91524237132098,-0.0444261140111164,4.08534009301439 -00:01:30.0288,69.7601946652112,-0.635042877419795,-1.86777316888175,-0.0435943575706688,4.07153667513326 -00:01:30.0377,69.7601972422558,-0.618144732686655,-1.81807274319605,-0.0427183633635847,4.05799687957418 -00:01:30.0466,69.760199752988,-0.602395992971109,-1.77175292050326,-0.0419145001621615,4.04471676966493 -00:01:30.0555,69.7602022047804,-0.589230906360541,-1.733032077531,-0.0412664800414285,4.03166213244378 -00:01:30.0643,69.7602046097132,-0.579497334376873,-1.70440392463786,-0.0408217869965916,4.018777978051 -00:01:30.0755,69.7602075916782,-0.572397392837742,-1.68352174364042,-0.0405651592303931,4.00270844934071 -00:01:30.0867,69.760210549543,-0.570325544595732,-1.67742807234039,-0.0406063031833182,3.98668306517034 -00:01:30.0979,69.7602135051228,-0.571855592001502,-1.68192821176912,-0.0408661593850328,3.97060206101741 -00:01:30.1090,69.7602164724628,-0.575236367955557,-1.69187167045752,-0.0412454543310001,3.95439903246865 -00:01:30.1202,69.7602194570322,-0.578819443917136,-1.70241012916805,-0.0416468752232018,3.9380455153427 -00:01:30.1314,69.7602224569036,-0.581353064714845,-1.70986195504366,-0.0419923026795287,3.92154717471251 -00:01:30.1426,69.760225465049,-0.582108894489598,-1.71208498379294,-0.042232518034229,3.90493459901706 -00:01:30.1567,69.7602292627391,-0.580262481830688,-1.70665435832555,-0.0423622450363286,3.88384951702099 -00:01:30.1708,69.7602330401594,-0.575794586099374,-1.69351348852757,-0.0423237947947331,3.8627402168005 -00:01:30.1849,69.7602367837119,-0.569671813682648,-1.67550533436073,-0.0421756013511778,3.84167394537575 -00:01:30.1990,69.7602404862205,-0.563008687356858,-1.65590790399076,-0.0419886851862619,3.82068754075994 -00:01:30.2132,69.7602441470303,-0.556746649688688,-1.6374901461432,-0.0418247201224202,3.79978582964087 -00:01:30.2273,69.7602477703272,-0.551452291903391,-1.62191850559821,-0.0417220672166325,3.77894919523408 -00:01:30.2466,69.7602526692514,-0.545929132590127,-1.60567391938273,-0.0416935873969285,3.75054415501133 -00:01:30.2658,69.7602575244981,-0.541786814469824,-1.5934906307936,-0.0417588111347176,3.72212907734728 -00:01:30.2851,69.7602623439479,-0.538116481457896,-1.58269553369969,-0.0418591448668437,3.69366224665239 -00:01:30.3044,69.7602671285299,-0.534132124844752,-1.57097683777868,-0.0419409066629198,3.66513714283776 -00:01:30.3280,69.7602729299243,-0.528325947690986,-1.55389984614996,-0.0419780398846583,3.63018138103305 -00:01:30.3605,69.7602808113475,-0.519176295671936,-1.52698910491746,-0.0419470968846591,3.5820110881785 -00:01:30.3930,69.760288554572,-0.509735912860936,-1.4992232731204,-0.0418923889737685,3.53388111115181 -00:01:30.4255,69.7602961606366,-0.500779843244972,-1.47288189189698,-0.041871623359471,3.48578713362781 -00:01:30.4580,69.7603036357466,-0.492342958016401,-1.44806752357765,-0.0418904357754985,3.43769416410378 -00:01:30.5000,69.7603130853806,-0.481566928653488,-1.41637331956908,-0.0419246203680709,3.37565809094246 -00:01:30.5018,69.760313499554,-0.480987601740499,-1.41466941688382,-0.0419179709743881,3.37290608682063 -00:01:30.5037,69.760313913137,-0.480189228706785,-1.41232126090231,-0.0418935087051096,3.37015509095085 -00:01:30.5061,69.7603144442813,-0.478759316668531,-1.40811563726039,-0.0418292258861377,3.36661765579952 -00:01:30.5085,69.7603149736013,-0.476891573321973,-1.40262227447639,-0.0417291910468857,3.36308714991477 -00:01:30.5108,69.7603155006431,-0.474631686551913,-1.3959755486821,-0.0415971510495916,3.35956639914744 -00:01:30.5158,69.7603165756619,-0.469016858003566,-1.37946134706931,-0.0412469899943547,3.35236693219537 -00:01:30.5238,69.7603182987614,-0.457915630235043,-1.34681067716189,-0.0405204233285909,3.34077151331158 -00:01:30.5318,69.7603199784489,-0.445474926404613,-1.31022037177827,-0.0396911274931134,3.32939441510829 -00:01:30.5399,69.7603216123144,-0.432989331268274,-1.27349803314198,-0.0388635035617677,3.31824909196403 -00:01:30.5479,69.7603232021179,-0.421566939976968,-1.23990276463814,-0.0381220384183314,3.30732405499104 -00:01:30.5559,69.7603247531974,-0.412034018006155,-1.21186475884163,-0.0375261423872222,3.2965874318987 -00:01:30.5640,69.7603262733591,-0.40488181489791,-1.1908288673468,-0.0371091401535667,3.2859939796616 -00:01:30.5748,69.7603282916894,-0.399167359031281,-1.17402164420965,-0.0368388372938844,3.27183683140922 -00:01:30.5856,69.7603302911302,-0.39744036821256,-1.1689422594487,-0.0368659913082416,3.25772745243468 -00:01:30.5965,69.7603322885409,-0.398620687783219,-1.1724137875977,-0.0371158378010429,3.24356860001109 -00:01:30.6073,69.7603342950801,-0.401363854128164,-1.18048192390636,-0.0374935067868335,3.2292935406586 -00:01:30.6181,69.7603363154804,-0.404385900405885,-1.18937029531143,-0.0379042299202996,3.21487104438627 -00:01:30.6290,69.7603383488357,-0.406691224672602,-1.19615066080177,-0.03826964026969,3.20030257101954 -00:01:30.6398,69.7603403902392,-0.407673855122341,-1.19904075035983,-0.0385375424830145,3.18561435629786 -00:01:30.6506,69.760342432686,-0.407113816589968,-1.19739357820579,-0.0386848363954092,3.17084705753979 -00:01:30.6659,69.7603453020675,-0.404013906639548,-1.18827619599867,-0.0387045394429607,3.1499616239322 -00:01:30.6812,69.760348143472,-0.39904478304452,-1.17366112660153,-0.0385663440602509,3.12910488833914 -00:01:30.6965,69.7603509478975,-0.393318514427501,-1.15681916008088,-0.0383600638383924,3.10833570768605 -00:01:30.7118,69.7603537133226,-0.387831036220961,-1.14067951829694,-0.0381692200659648,3.08766927154408 -00:01:30.7271,69.7603564433145,-0.383209389870349,-1.12708644079514,-0.0380482741261302,3.06708464084114 -00:01:30.7424,69.7603591442714,-0.379626585709891,-1.11654878149968,-0.0380145084066322,3.04654157911195 -00:01:30.7633,69.7603627951726,-0.375934064110773,-1.10568842385521,-0.0380729481548712,3.0184969730864 -00:01:30.7841,69.7603664122072,-0.372795185304545,-1.09645642736631,-0.0381839974118373,2.99039534023736 -00:01:30.8050,69.7603699968864,-0.369407267595663,-1.08649196351666,-0.0382771530378805,2.96222404015096 -00:01:30.8259,69.7603735454725,-0.36538720789201,-1.07466825850591,-0.038315131118379,2.93400681642437 -00:01:30.8534,69.7603781704079,-0.359291987269138,-1.05674113902688,-0.0382924260449573,2.8967101653106 -00:01:30.8810,69.7603827164941,-0.352901604927964,-1.03794589684695,-0.0382391564285657,2.85944482453465 -00:01:30.9086,69.76038718323,-0.346744479278096,-1.01983670375911,-0.0382060044045779,2.82221607906585 -00:01:30.9362,69.7603915739262,-0.340968053914241,-1.00284721739483,-0.038209883546126,2.78500023343422 -00:01:30.9835,69.7603989420939,-0.331332784615446,-0.974508190045428,-0.0382472533745278,2.72108045199179 -00:01:31.0000,69.7604014516618,-0.327996648214586,-0.964696024160546,-0.0382622860999148,2.69886570661357 -00:01:31.0015,69.7604016927821,-0.327616718965747,-0.963578585193375,-0.0382574836306505,2.69671893462037 -00:01:31.0031,69.7604019335774,-0.327116709445208,-0.962107968956493,-0.0382395408563464,2.69457281249873 -00:01:31.0054,69.7604022730641,-0.326144029947799,-0.959247146905291,-0.0381849816303181,2.69154313414625 -00:01:31.0076,69.7604026113794,-0.324864035029645,-0.955482455969543,-0.0380966487242916,2.68851912645315 -00:01:31.0099,69.7604029482228,-0.323302742015905,-0.950890417693837,-0.0379774341918445,2.68550330615124 -00:01:31.0137,69.7604035172918,-0.320109020359584,-0.941497118704658,-0.0377159692217077,2.68039631769499 -00:01:31.0209,69.7604045748401,-0.312723199674527,-0.919774116689786,-0.0370772188603003,2.67086136725318 -00:01:31.0281,69.760405605841,-0.304142360354996,-0.894536353985281,-0.0363164072832359,2.66150354079606 -00:01:31.0354,69.7604066077372,-0.295138485615536,-0.868054369457459,-0.0355194433162121,2.65234189359809 -00:01:31.0426,69.7604075802495,-0.286423006557186,-0.842420607521134,-0.0347601152326819,2.64337683832868 -00:01:31.0498,69.7604085252717,-0.278593499101915,-0.819392644417397,-0.0340957459760279,2.63459214240487 -00:01:31.0570,69.7604094464436,-0.272092390993695,-0.800271738216749,-0.0335656088637828,2.62595910412087 -00:01:31.0658,69.7604105376354,-0.266355910012825,-0.783399735331838,-0.0331324386490644,2.61565001218568 -00:01:31.0745,69.7604116104429,-0.263007241822283,-0.773550711242009,-0.0329289801361894,2.60543928560542 -00:01:31.0833,69.7604126739038,-0.26181235106774,-0.770036326669824,-0.0329332089041763,2.59526037840992 -00:01:31.0920,69.7604137357123,-0.262298915293967,-0.771467397923434,-0.0331033257531088,2.58505601175242 -00:01:31.1008,69.760414801451,-0.26387173433511,-0.776093336279735,-0.0333862326410482,2.57478329420416 -00:01:31.1095,69.7604158743129,-0.265926509282161,-0.782136792006357,-0.0337260565455681,2.56441595787765 -00:01:31.1183,69.7604169552283,-0.267936845314085,-0.788049545041427,-0.0340713541166523,2.55394414338087 -00:01:31.1270,69.7604180432696,-0.269505423753687,-0.792663011040256,-0.0343803343662788,2.54337227953403 -00:01:31.1375,69.7604193577489,-0.270453404071041,-0.795451188444239,-0.0346625771218222,2.53054962544314 -00:01:31.1503,69.760420953943,-0.270080283120267,-0.79435377388314,-0.0348494894155292,2.51488933181492 -00:01:31.1631,69.7604225435839,-0.268197373165706,-0.788815803428548,-0.0348741707634188,2.49918086325884 -00:01:31.1758,69.7604241191105,-0.265203999260694,-0.780011762531452,-0.0347743909898993,2.48348713574685 -00:01:31.1886,69.760425675552,-0.26162691603637,-0.769490929518734,-0.034605886709264,2.46785117205346 -00:01:31.2013,69.7604272109344,-0.257980764089182,-0.758766953203476,-0.0344255326450492,2.45229139701136 -00:01:31.2141,69.7604287259191,-0.254659355732178,-0.748998105094642,-0.0342780763090033,2.43680382282291 -00:01:31.2269,69.7604302229455,-0.251876989587444,-0.740814675257188,-0.0341890392692388,2.42136881228258 -00:01:31.2449,69.7604323159423,-0.248860232515703,-0.731941860340302,-0.0341663844742334,2.39957534216177 -00:01:31.2630,69.7604343865492,-0.246584752454755,-0.725249271925749,-0.0342311085467269,2.37777057174148 -00:01:31.2810,69.760436438759,-0.244566988869649,-0.719314673146027,-0.0343302229518332,2.35591745050014 -00:01:31.2991,69.760438473115,-0.242394163162334,-0.712924009300981,-0.0344148384339718,2.33400892148114 -00:01:31.3171,69.7604404876654,-0.239857437383176,-0.70546305112699,-0.0344573051170925,2.31206128166721 -00:01:31.3421,69.7604432381387,-0.235812640244749,-0.693566588955143,-0.0344496232107427,2.28166604540042 -00:01:31.3671,69.7604459405949,-0.231483005626873,-0.680832369490804,-0.0344031250225645,2.25129109414401 -00:01:31.3921,69.7604485938098,-0.227220339911624,-0.66829511738713,-0.0343626016921973,2.22095010574521 -00:01:31.4171,69.760451199236,-0.223190433534371,-0.656442451571681,-0.0343520278653075,2.19062966851203 -00:01:31.4533,69.7604548949135,-0.217621167311531,-0.640062256798619,-0.0343753663750552,2.14667655804592 -00:01:31.4895,69.7604584968901,-0.212078163545793,-0.623759304546449,-0.0344054043411517,2.10269478932523 -00:01:31.5000,69.760459519776,-0.210456954086266,-0.618991041430195,-0.0344115786937476,2.08998648165487 -00:01:31.5013,69.7604596525057,-0.210216533249229,-0.618283921321261,-0.0344078697926214,2.08833010378895 -00:01:31.5027,69.7604597850625,-0.209914157812595,-0.617394581801749,-0.0343944964297903,2.08667415603783 -00:01:31.5048,69.7604599929228,-0.209269081891074,-0.615497299679629,-0.0343468993374127,2.0840739189328 -00:01:31.5070,69.7604602000384,-0.208416012516446,-0.612988272107195,-0.034266705978898,2.08147853656524 -00:01:31.5091,69.7604604062144,-0.207368684597077,-0.609907895873755,-0.034156128790289,2.0788903371493 -00:01:31.5122,69.760460701189,-0.205565388414357,-0.604604083571637,-0.033951142539931,2.0751790338788 -00:01:31.5187,69.7604613121407,-0.200903070856728,-0.590891384872731,-0.033388556501747,2.06745766320222 -00:01:31.5252,69.7604619077789,-0.195349887907376,-0.574558493845223,-0.032698807165518,2.05987919929212 -00:01:31.5317,69.7604624861519,-0.189323281327422,-0.556833180374772,-0.0319509420557125,2.0524638009097 -00:01:31.5382,69.7604630464309,-0.183231648673046,-0.538916613744252,-0.0312066178285954,2.04521810681556 -00:01:31.5447,69.7604635889565,-0.177450313410646,-0.521912686501901,-0.0305168306000957,2.03813591305848 -00:01:31.5512,69.7604641151159,-0.172297384323794,-0.506757012717041,-0.0299204737122813,2.0312005923509 -00:01:31.5577,69.7604646271327,-0.168011181128336,-0.4941505327304,-0.0294438225753291,2.0243879729872 -00:01:31.5661,69.7604652723916,-0.1639766359733,-0.482284223450882,-0.0290264026573991,2.01572096184524 -00:01:31.5744,69.760465905327,-0.161655629825737,-0.47545773478158,-0.028829992111182,2.00714485965911 -00:01:31.5828,69.760466532153,-0.160882151245974,-0.473182797782278,-0.0288331352866738,1.99859836221233 -00:01:31.5912,69.7604671581864,-0.16132406042127,-0.474482530650794,-0.028997075068514,1.9900284356155 -00:01:31.5996,69.7604677873189,-0.162561941100355,-0.478123356177516,-0.0292728814159921,1.98139480883981 -00:01:31.6080,69.760468421825,-0.164169042691668,-0.482850125563729,-0.029608765625627,1.97267197079959 -00:01:31.6164,69.7604690624437,-0.165772250779798,-0.487565443469994,-0.0299563582101279,1.96384911186788 -00:01:31.6248,69.7604697086466,-0.167087621185378,-0.491434179956995,-0.0302753789688887,1.9549284570389 -00:01:31.6332,69.7604703589981,-0.167932211969991,-0.493918270499974,-0.0305364974789953,1.945922492013 -00:01:31.6439,69.7604711901791,-0.168196008357247,-0.494694142227196,-0.0307590478785096,1.93435870807661 -00:01:31.6580,69.76047229097,-0.167234300544595,-0.491865589837044,-0.0308638796509491,1.91892946863588 -00:01:31.6697,69.7604731867791,-0.165537514545684,-0.486875042781424,-0.0308103754103901,1.90626395879438 -00:01:31.6813,69.7604740722626,-0.163328857222,-0.480378991829412,-0.0306741358334559,1.89363528965951 -00:01:31.6929,69.7604749454602,-0.160919408151365,-0.473292376915778,-0.030502346737918,1.88106808955293 -00:01:31.7046,69.7604758059911,-0.158581204270002,-0.466415306676478,-0.0303376788992811,1.86856853368666 -00:01:31.7162,69.760476654707,-0.156504765476734,-0.460308133755101,-0.0302109146600283,1.85612790286658 -00:01:31.7307,69.7604777003007,-0.154405835730328,-0.454134810971552,-0.0301280440347764,1.84064974183839 -00:01:31.7509,69.7604791340723,-0.152255635289664,-0.447810692028425,-0.0301355632183743,1.81915872392284 -00:01:31.7711,69.7604805497376,-0.150610327343889,-0.442971551011439,-0.0302305675500549,1.79763514062772 -00:01:31.7913,69.7604819497471,-0.149007725062173,-0.438258014888745,-0.0303401259705978,1.7760444337017 -00:01:31.8115,69.7604833332869,-0.147143715102356,-0.432775632653989,-0.0304100764515763,1.75439350011497 -00:01:31.8317,69.7604846978388,-0.144946889120676,-0.426314379766695,-0.0304226222463323,1.73271379908563 -00:01:31.8592,69.7604865243809,-0.141643224554812,-0.41659771927886,-0.0303816004843548,1.70315144305108 -00:01:31.8867,69.760488308978,-0.138296401763747,-0.406754122834549,-0.0303288464589316,1.67362863295753 -00:01:31.9143,69.7604900522206,-0.135112416968166,-0.397389461671076,-0.0303066843250092,1.64413784725551 -00:01:31.9418,69.7604917558629,-0.132090471724521,-0.388501387425061,-0.0303198488299914,1.61465143694281 -00:01:31.9785,69.7604939631029,-0.128108290499578,-0.376789089704641,-0.0303525276372008,1.57538973225656 -00:01:32.0000,69.760495225195,-0.125735533781352,-0.369810393474564,-0.0303668726150745,1.55236027623676 -00:01:32.0012,69.7604952956353,-0.125586754889315,-0.369372808497985,-0.0303640772891009,1.55106183444314 -00:01:32.0024,69.7604953659827,-0.125406888803152,-0.368843790597505,-0.0303536057350396,1.54976368445112 -00:01:32.0040,69.7604954605277,-0.125096643118588,-0.367931303289965,-0.0303226355424059,1.54801678521239 -00:01:32.0056,69.7604955548072,-0.124704795442941,-0.366778810126297,-0.0302713877080892,1.546272261604 -00:01:32.0073,69.7604956487618,-0.124234046372127,-0.365394254035666,-0.0302005601378037,1.54453124136746 -00:01:32.0097,69.760495786718,-0.123409321559847,-0.362968592823078,-0.0300640225762851,1.54197028888645 -00:01:32.0158,69.7604961306802,-0.120768177751968,-0.355200522799907,-0.0295857081365511,1.53556052143789 -00:01:32.0218,69.7604964662647,-0.117464613954292,-0.345484158689095,-0.0289595456000344,1.52926923268517 -00:01:32.0279,69.7604967919847,-0.113714894526926,-0.334455572138016,-0.028248282167456,1.52312010496097 -00:01:32.0340,69.7604971068952,-0.109744544846709,-0.322778073078557,-0.0275095672407067,1.51712551539612 -00:01:32.0401,69.7604974106846,-0.105781456045927,-0.311121929546844,-0.0267931290508551,1.51128641028326 -00:01:32.0462,69.7604977036721,-0.102043183205846,-0.300127009428958,-0.0261394440565931,1.50559392893439 -00:01:32.0523,69.7604979867499,-0.0987198386590819,-0.290352466644359,-0.0255789876487755,1.50003151846389 -00:01:32.0584,69.760498261281,-0.0959574044381622,-0.282227660112242,-0.025131999423506,1.49457714936815 -00:01:32.0663,69.7604986084566,-0.0933433534147268,-0.274539274749196,-0.024736072172955,1.487602654691 -00:01:32.0742,69.7604989481296,-0.0918542863913924,-0.270159665857036,-0.0245459289053407,1.48071007064793 -00:01:32.0821,69.7604992841615,-0.0913883594700603,-0.268789292559001,-0.0245420879408158,1.47384543038286 -00:01:32.0900,69.7604996198861,-0.0917353415823932,-0.269809828183509,-0.0246906255605943,1.46696166064247 -00:01:32.0980,69.7604999577797,-0.0926262515297908,-0.272430151558208,-0.0249488098070139,1.46002223334628 -00:01:32.1059,69.7605002993362,-0.0937851386254506,-0.275838643016031,-0.025270934666073,1.45300286870531 -00:01:32.1138,69.7605006451097,-0.0949688188204642,-0.279320055354307,-0.0256134224917925,1.44589166468928 -00:01:32.1217,69.7605009948707,-0.0959901914344153,-0.282324092454163,-0.0259387570651037,1.43868797492498 -00:01:32.1296,69.7605013478212,-0.0967259014894407,-0.284487945557179,-0.0262180748364959,1.43140038361446 -00:01:32.1375,69.7605017028177,-0.0971125074904147,-0.285625022030631,-0.0264324146144392,1.42404414454268 -00:01:32.1484,69.7605021927809,-0.0970583950998111,-0.285465867940621,-0.0266070918341842,1.41383308711551 -00:01:32.1593,69.7605026810003,-0.0964076968679692,-0.283552049611674,-0.0266493124594399,1.40358009589098 -00:01:32.1702,69.7605031648733,-0.0953016738463569,-0.280299040724579,-0.0265836532756567,1.3933303567107 -00:01:32.1812,69.7605036425432,-0.0939140929846675,-0.27621792054314,-0.0264472723581643,1.38311795901045 -00:01:32.1921,69.7605041130211,-0.0924206488292187,-0.271825437732996,-0.0262809469835965,1.37296235006463 -00:01:32.2030,69.7605045761354,-0.0909724409882874,-0.267566002906728,-0.0261211160859603,1.36286834348142 -00:01:32.2139,69.7605050323606,-0.0896765792743715,-0.263754644924622,-0.0259944846652262,1.35282872785555 -00:01:32.2272,69.760505582566,-0.0883720885502634,-0.259917907500775,-0.0259049351063816,1.34059539048329 -00:01:32.2451,69.7605063087674,-0.0870581730006177,-0.256053450001817,-0.0258916700246689,1.3242407482482 -00:01:32.2630,69.7605070252403,-0.0860582593647538,-0.253112527543393,-0.0259636323650154,1.30786995472972 -00:01:32.2808,69.7605077335439,-0.0851363304278777,-0.250400971846699,-0.0260659761103831,1.29144805923112 -00:01:32.2987,69.7605084336472,-0.0841114280236982,-0.247386553010877,-0.026150133581877,1.27497035492514 -00:01:32.3166,69.7605091244877,-0.0829070268395379,-0.243844196586876,-0.0261899574612877,1.25845477392206 -00:01:32.3389,69.7605099710852,-0.0811928923791558,-0.238802624644576,-0.0261804996975283,1.23784397740691 -00:01:32.3612,69.7605107995499,-0.0793652295256601,-0.233427145663706,-0.0261362256769052,1.2172515549329 -00:01:32.3835,69.7605116093179,-0.0775434552109889,-0.228068985914673,-0.0260939123794336,1.1966899943511 -00:01:32.4058,69.7605124006619,-0.0757850925240674,-0.22289733095314,-0.0260759986829457,1.17615048951124 -00:01:32.4351,69.760513415813,-0.0735393856350144,-0.216292310691219,-0.0260880826450194,1.14909755276228 -00:01:32.4645,69.760514400236,-0.0712848494967482,-0.209661322049259,-0.0261155172026454,1.12202703243163 -00:01:32.4939,69.7605153534463,-0.0689610044781676,-0.202826483759316,-0.02613328208806,1.09493600352825 -00:01:32.5000,69.7605155472157,-0.0684684411850902,-0.201377768191442,-0.0261347359395673,1.0893144743737 -00:01:32.5010,69.7605155796055,-0.0683809498854326,-0.201120440839508,-0.0261326164231784,1.08837081550961 -00:01:32.5020,69.7605156119508,-0.0682830553380335,-0.200832515700098,-0.0261251802960426,1.08742734137816 -00:01:32.5035,69.7605156603596,-0.0681079930599145,-0.200317626646807,-0.0260994524098829,1.0860133971596 -00:01:32.5051,69.7605157086309,-0.0678969313939711,-0.199696857041092,-0.0260550680674416,1.08460136510774 -00:01:32.5066,69.76051575674,-0.0676502174450635,-0.198971227779599,-0.0259922504836459,1.08319222782507 -00:01:32.5086,69.7605158187148,-0.0672818019302965,-0.197887652736166,-0.0258858733917969,1.08137462568089 -00:01:32.5126,69.7605159442266,-0.0663772315381014,-0.195227151582651,-0.025594132913985,1.07768723866608 -00:01:32.5188,69.7605161307871,-0.0646710895666857,-0.19020908696084,-0.0250042823398443,1.0721929281113 -00:01:32.5249,69.7605163120105,-0.0626215292858189,-0.184180968487703,-0.0242917641294543,1.06683902362634 -00:01:32.5311,69.7605164870816,-0.060327025407263,-0.17743242766842,-0.0235214398381427,1.06164459005542 -00:01:32.5373,69.7605166554823,-0.0579119169135956,-0.170329167392928,-0.0227511238579313,1.05661629125807 -00:01:32.5434,69.7605168170728,-0.0555189525543838,-0.163291036924658,-0.022029165306811,1.0517492474535 -00:01:32.5496,69.7605169721214,-0.053293558043021,-0.156745758950062,-0.0213932938548363,1.04702912764471 -00:01:32.5557,69.7605171212832,-0.0513647827627445,-0.15107289047866,-0.0208701118678961,1.04243456096269 -00:01:32.5619,69.7605172655297,-0.0498284121179972,-0.146554153288227,-0.0204751974916647,1.03793957052146 -00:01:32.5680,69.7605174060406,-0.0487362480085826,-0.143341905907596,-0.0202138134246077,1.0335158942213 -00:01:32.5742,69.760517544076,-0.0480932814626911,-0.141450827831444,-0.020082134689057,1.02913508668834 -00:01:32.5803,69.7605176808526,-0.0478623202721345,-0.14077153021216,-0.0200688551068854,1.0247703136224 -00:01:32.5865,69.7605178174383,-0.0479741063243685,-0.141100312718731,-0.0201570171726576,1.020397775642 -00:01:32.5926,69.7605179546803,-0.0483402365862258,-0.142177166430076,-0.0203259173353763,1.01599772921124 -00:01:32.5988,69.7605180931686,-0.0488662268874228,-0.143724196727714,-0.0205529566679116,1.01155510185301 -00:01:32.6049,69.7605182332339,-0.0494626257407595,-0.145478311002234,-0.0208153302408256,1.00705972452309 -00:01:32.6111,69.7605183749719,-0.0500529335122023,-0.147214510330007,-0.0210914746804857,1.00250622439193 -00:01:32.6185,69.7605185471223,-0.0506675309234358,-0.149022149774811,-0.0214129282113499,0.996963622539664 -00:01:32.6259,69.7605187210866,-0.0511241817062223,-0.150365240312419,-0.0217006894302532,0.991342140637358 -00:01:32.6332,69.7605188962793,-0.0513898912381861,-0.151146738935842,-0.0219358401070116,0.985652863396828 -00:01:32.6428,69.7605191224882,-0.0514420908279258,-0.151300267140958,-0.0221438233947346,0.978255082124928 -00:01:32.6551,69.7605194143076,-0.0510894900870898,-0.150263206138499,-0.0222549774888285,0.968614585701422 -00:01:32.6650,69.7605196473017,-0.0505332844961945,-0.148627307341749,-0.0222291774758649,0.960834674987062 -00:01:32.6749,69.7605198774156,-0.0498157055358085,-0.146516780987672,-0.0221281063977754,0.953075759105154 -00:01:32.6848,69.7605201040723,-0.0490134311570666,-0.14415715046196,-0.0219835086266522,0.945358816914113 -00:01:32.6947,69.7605203270388,-0.0481960593573627,-0.141753115756949,-0.021826679687702,0.937693688589815 -00:01:32.7046,69.7605205463683,-0.0474193692282058,-0.139468733024135,-0.0216838215975619,0.930080263130701 -00:01:32.7145,69.7605207623239,-0.046720226243023,-0.137412430126538,-0.0215732513267186,0.922510722135397 -00:01:32.7274,69.7605210392491,-0.0459486152700884,-0.135142986088495,-0.0214919175812416,0.912693767650919 -00:01:32.7445,69.7605213993497,-0.0451278068101668,-0.132728843559314,-0.0214838149913297,0.899731613602824 -00:01:32.7616,69.7605217533887,-0.0444355305299755,-0.130692736852869,-0.0215544833892471,0.886752735049054 -00:01:32.7786,69.7605221019051,-0.0437558597490064,-0.128693705144136,-0.0216540388795549,0.873725925675348 -00:01:32.7957,69.760522444724,-0.0430089132128581,-0.12649680356723,-0.0217381637546073,0.860646390248545 -00:01:32.8128,69.760522781255,-0.0421672545906187,-0.124021337031232,-0.0217818763227303,0.847529471377659 -00:01:32.8299,69.7605231108339,-0.0412441067915032,-0.121306196445598,-0.0217825674881678,0.834398883353523 -00:01:32.8510,69.7605235079896,-0.0400396924920615,-0.11776380144724,-0.0217473930669035,0.818174752681722 -00:01:32.8721,69.7605238933077,-0.0388115360350625,-0.114151576573713,-0.0217035792482405,0.801977464681857 -00:01:32.8932,69.760524266648,-0.0375839363310244,-0.110540989208895,-0.0216767290710389,0.785804578234935 -00:01:32.9143,69.76052462797,-0.0363538970123146,-0.106923226506808,-0.0216751714534353,0.76964190506627 -00:01:32.9483,69.7605251847708,-0.0343199344933366,-0.100940983803931,-0.0217007744528099,0.74356565828138 -00:01:32.9824,69.7605257086757,-0.0321886764357276,-0.0946725777521401,-0.0217276293022769,0.717462319426089 -00:01:33.0000,69.7605259659321,-0.0310474284572903,-0.0913159660508538,-0.0217341106068874,0.703975046416447 -00:01:33.0009,69.7605259795523,-0.0309849137092957,-0.0911320991449875,-0.0217323064849266,0.70324709313788 -00:01:33.0018,69.7605259931441,-0.030921985292511,-0.0909470155662089,-0.021725881507233,0.702519288129521 -00:01:33.0033,69.760526014164,-0.0308234245353237,-0.0906571309862462,-0.0217023043152598,0.701391591078596 -00:01:33.0048,69.7605260351162,-0.0307237164376342,-0.0903638718753947,-0.0216609024220523,0.700265596025584 -00:01:33.0063,69.7605260560001,-0.0306227686799693,-0.0900669667057922,-0.0216016903291843,0.69914220766951 -00:01:33.0080,69.760526081116,-0.0304988543134081,-0.0897025126864943,-0.0215081924901236,0.697791020852963 -00:01:33.0113,69.7605261276011,-0.0302591454858987,-0.0889974867232314,-0.0212785236775258,0.695294522071174 -00:01:33.0170,69.7605262064936,-0.0297994058418471,-0.0876453112995502,-0.0207503232897272,0.691085361032679 -00:01:33.0227,69.7605262840328,-0.0292388972656749,-0.0859967566637496,-0.0200964477149123,0.686994005356105 -00:01:33.0284,69.7605263599214,-0.0285480277490723,-0.0839647874972715,-0.0193718248534282,0.683039481950243 -00:01:33.0340,69.7605264338256,-0.0277269803029196,-0.0815499420674105,-0.0186266101113256,0.679231217746694 -00:01:33.0397,69.760526505453,-0.0268075336001891,-0.0788456870593796,-0.0179041930812469,0.675569281742769 -00:01:33.0454,69.7605265746245,-0.025846016761449,-0.0760176963572029,-0.0172402361934179,0.672045735007326 -00:01:33.0511,69.7605266413219,-0.0249111192831156,-0.0732679978915165,-0.0166621118101987,0.668646278488333 -00:01:33.0567,69.7605267057022,-0.024070309673064,-0.0707950284501883,-0.0161887071812713,0.665351962382148 -00:01:33.0624,69.76052676808,-0.0233780713097301,-0.0687590332639119,-0.0158306381297824,0.662140870804424 -00:01:33.0681,69.7605268288842,-0.0228680863161284,-0.0672590774003775,-0.0155908527532565,0.658989715351283 -00:01:33.0738,69.7605268886007,-0.0225502153529726,-0.0663241628028607,-0.0154655558929892,0.655875274393704 -00:01:33.0794,69.7605269477127,-0.0224119695796528,-0.0659175575872141,-0.0154453635703421,0.652775625510676 -00:01:33.0851,69.7605270066493,-0.0224233596957081,-0.0659510579285532,-0.0155165934227264,0.649671134723508 -00:01:33.0908,69.7605270657482,-0.0225436105022419,-0.0663047367712997,-0.0156626028280019,0.646545183886687 -00:01:33.0965,69.7605271252368,-0.0227282193759666,-0.0668477040469605,-0.0158650964755831,0.64338463422123 -00:01:33.1022,69.7605271852302,-0.0229351180447165,-0.0674562295432837,-0.0161053378650322,0.64018003840218 -00:01:33.1078,69.760527245743,-0.0231291423364273,-0.0680268892247863,-0.016365213560714,0.63692562531584 -00:01:33.1135,69.7605273067099,-0.0232844981177481,-0.0684838179933766,-0.0166281140803017,0.633619090355979 -00:01:33.1205,69.7605273824534,-0.0233990665140621,-0.0688207838648886,-0.0169345825228082,0.629464206683048 -00:01:33.1275,69.760527458416,-0.0234207129953218,-0.0688844499862406,-0.0172030514918559,0.625238572095806 -00:01:33.1345,69.7605275343074,-0.0233532748801869,-0.068686102588785,-0.0174188782715538,0.620953259549651 -00:01:33.1438,69.7605276343988,-0.023148785906504,-0.0680846644308942,-0.0176109698844589,0.615202015428127 -00:01:33.1531,69.7605277334183,-0.0228485404119081,-0.0672015894467885,-0.0176962316941739,0.609405259299239 -00:01:33.1624,69.7605278310305,-0.0224874529316885,-0.0661395674461427,-0.0176863998276825,0.603595527447124 -00:01:33.1717,69.7605279270215,-0.022090904769713,-0.0649732493226854,-0.0176030811114703,0.597800283355722 -00:01:33.1811,69.7605280212766,-0.0216784102381989,-0.0637600301123497,-0.0174730952590878,0.592039204520837 -00:01:33.1904,69.7605281137556,-0.0212642504414056,-0.0625419130629576,-0.0173238239818992,0.586323185032183 -00:01:33.1997,69.7605282044733,-0.0208591505794619,-0.0613504428807702,-0.0171794264372224,0.580654743437663 -00:01:33.2090,69.760528293483,-0.0204702171256638,-0.0602065209578347,-0.0170582939334288,0.575029463419742 -00:01:33.2205,69.7605284011827,-0.0200158292227429,-0.0588700859492439,-0.0169573634479183,0.568125660343702 -00:01:33.2351,69.760528535067,-0.0194687764747775,-0.0572611072787574,-0.0169106614367407,0.559362436891813 -00:01:33.2497,69.7605286652668,-0.0189340270150329,-0.0556883147500967,-0.0169405555024016,0.550604379157837 -00:01:33.2644,69.7605287917721,-0.018384699863416,-0.0540726466571058,-0.017016862931628,0.541820698078498 -00:01:33.2790,69.760528914439,-0.0178046882115942,-0.0523667300341006,-0.0171051006437637,0.53299630526414 -00:01:33.2937,69.7605290330678,-0.0171930423083058,-0.0505677714950169,-0.0171772253207599,0.524131735908979 -00:01:33.3083,69.7605291474817,-0.0165589692844604,-0.0487028508366483,-0.0172178240186198,0.515238550149664 -00:01:33.3280,69.7605292940183,-0.0156903774715737,-0.0461481690340402,-0.0172229206181134,0.503303209190025 -00:01:33.3476,69.760529432648,-0.0148157655027778,-0.043575780890523,-0.0171914598649068,0.491375528802735 -00:01:33.3672,69.7605295632604,-0.0139277064315253,-0.0409638424456626,-0.0171513190511988,0.479470490559563 -00:01:33.3869,69.7605296856792,-0.0130153125391099,-0.038280330997382,-0.0171245819926248,0.467587129608752 -00:01:33.4106,69.7605298221453,-0.011864210672454,-0.0348947372719235,-0.0171209724795032,0.453249750659506 -00:01:33.4452,69.7605299977703,-0.0100808963202963,-0.029649695059695,-0.0171473287572331,0.432303904344897 -00:01:33.4798,69.7605301440126,-0.00819381838281695,-0.0240994658318145,-0.0171762828963058,0.411328957477937 -00:01:33.5000,69.7605302152493,-0.00705754141920999,-0.0207574747623823,-0.0171845324876838,0.399087303410783 -00:01:33.5008,69.7605302180562,-0.00701074878552496,-0.020619849369191,-0.0171831101798649,0.398564489273177 -00:01:33.5017,69.7605302208447,-0.00696921154809827,-0.0204976810238184,-0.0171778950428468,0.398041784465623 -00:01:33.5030,69.7605302252533,-0.00691984212969824,-0.0203524768520537,-0.0171576547886929,0.39721070451553 -00:01:33.5044,69.7605302296379,-0.00689300879751899,-0.0202735552868205,-0.0171213927680429,0.396381006243978 -00:01:33.5058,69.7605302340125,-0.00688895224870301,-0.0202616242608912,-0.0170688656190028,0.395553453399422 -00:01:33.5072,69.7605302383912,-0.00690620272428774,-0.0203123609537875,-0.0170008972858809,0.394728809425915 -00:01:33.5097,69.7605302464352,-0.00698464107880832,-0.0205430619964951,-0.0168415458672377,0.393235328107562 -00:01:33.5149,69.7605302639592,-0.0072944474255092,-0.0214542571338506,-0.0163815808671833,0.390134954920687 -00:01:33.5202,69.7605302823575,-0.00771204694027943,-0.0226824910008219,-0.0157893091062636,0.387132606122523 -00:01:33.5255,69.760530301752,-0.0081318044907729,-0.023917072031685,-0.0151125982080369,0.384247670893688 -00:01:33.5308,69.7605303220611,-0.00847488295084584,-0.0249261263260172,-0.0143961066090602,0.381491943352718 -00:01:33.5361,69.7605303430543,-0.00869694449763642,-0.0255792485224601,-0.0136795325126542,0.378869390887011 -00:01:33.5414,69.7605303644302,-0.00878695180579211,-0.0258439758993886,-0.0129968224709562,0.376377022344143 -00:01:33.5467,69.7605303858901,-0.00876039743442867,-0.0257658748071432,-0.0123756334348093,0.374006050223847 -00:01:33.5520,69.7605304071909,-0.00864955695606105,-0.0254398734001796,-0.0118370002076563,0.371743127155569 -00:01:33.5573,69.7605304281739,-0.00849313905900527,-0.0249798207617802,-0.0113952721680748,0.369571597210801 -00:01:33.5625,69.7605304487702,-0.00832729729138468,-0.0244920508570138,-0.0110583408340326,0.367472721699167 -00:01:33.5678,69.7605304689876,-0.00817929040899904,-0.024056736497056,-0.0108281316724335,0.365426835601608 -00:01:33.5731,69.7605304888851,-0.00806430552653009,-0.023718545666265,-0.0107013084454125,0.363414392931622 -00:01:33.5784,69.7605305085446,-0.0079852708269506,-0.0234860906675018,-0.0106701300286264,0.361416867465874 -00:01:33.5837,69.7605305280431,-0.00793499301530013,-0.0233382147508827,-0.0107233994424291,0.359417485900641 -00:01:33.5890,69.760530547433,-0.00789969946375576,-0.023234410187517,-0.0108474484661558,0.357401781330091 -00:01:33.5943,69.760530566731,-0.00786303292839298,-0.02312656743645,-0.0110271070698329,0.355357964990394 -00:01:33.5996,69.7605305859154,-0.00780968892666666,-0.0229696733137255,-0.0112466143218557,0.353277123011346 -00:01:33.6049,69.7605306049324,-0.00772813530195543,-0.0227298097116336,-0.0114904358950891,0.351153252220278 -00:01:33.6102,69.7605306237066,-0.00761214097602471,-0.0223886499294844,-0.0117439622809996,0.348983154716505 -00:01:33.6154,69.7605306421543,-0.0074611075316601,-0.0219444339166473,-0.0119940708406432,0.346766214931979 -00:01:33.6221,69.7605306647086,-0.00722952405927063,-0.0212633060566783,-0.0122849939743578,0.343921770998934 -00:01:33.6287,69.7605306865071,-0.00696608902615915,-0.0204884971357622,-0.012536477150331,0.341014097616447 -00:01:33.6367,69.7605307116328,-0.00663522880341506,-0.0195153788335737,-0.0127704876995659,0.33744934303927 -00:01:33.6463,69.7605307404378,-0.00625598238297788,-0.0183999481852291,-0.0129441521435184,0.333071719276512 -00:01:33.6560,69.7605307676879,-0.00593214555094397,-0.0174474869145411,-0.0130023237788922,0.328654421205122 -00:01:33.6656,69.7605307936434,-0.00567499930382277,-0.0166911744230082,-0.0129623532753458,0.324233215359369 -00:01:33.6753,69.7605308185704,-0.00547481705261918,-0.0161024030959388,-0.0128515414455978,0.319836679955387 -00:01:33.6849,69.7605308426722,-0.00531045073606118,-0.0156189727531211,-0.0127013377017568,0.315483581629258 -00:01:33.6946,69.7605308660575,-0.00515870959151586,-0.0151726752691643,-0.0125419636496678,0.311182320864399 -00:01:33.7042,69.7605308887419,-0.00500012634592179,-0.0147062539585935,-0.0123983569588684,0.306931997399915 -00:01:33.7139,69.7605309106672,-0.00482086476948452,-0.0141790140278957,-0.0122877656348781,0.302724570642346 -00:01:33.7235,69.7605309317239,-0.00461232518497796,-0.0135656623087587,-0.0122189714718248,0.29854756435608 -00:01:33.7378,69.7605309608847,-0.00424449052560667,-0.012483795663549,-0.0121918110568522,0.292403620170467 -00:01:33.7520,69.7605309873907,-0.00380731403983825,-0.0111979824701125,-0.0122342989640685,0.286256659103186 -00:01:33.7663,69.7605310108419,-0.00331443646992054,-0.00974834255858984,-0.0123154351486291,0.280080413031902 -00:01:33.7805,69.7605310309587,-0.00279064938819138,-0.00820779231820995,-0.0124027694141396,0.273863466101718 -00:01:33.7948,69.7605310476313,-0.00226431207775524,-0.00665974140516248,-0.0124713166944748,0.267608407661173 -00:01:33.8090,69.7605310609098,-0.00175747479383434,-0.00516904351127746,-0.012508284714769,0.261327205517771 -00:01:33.8281,69.7605310736898,-0.00111877326295049,-0.0032905095969132,-0.012510723480799,0.252878530125023 -00:01:33.8473,69.7605310809507,-0.000514189620535007,-0.00151232241333825,-0.0124789278540185,0.244438337611328 -00:01:33.8664,69.7605310828357,8.79662277531539e-05,0.000258724199273982,-0.012439631152598,0.236020141873681 -00:01:33.8855,69.7605310792282,0.000719531756643999,0.00211626987248235,-0.0124136357230978,0.227622634657312 -00:01:33.9047,69.7605310698037,0.00139851154091926,0.00411326923799781,-0.0124091326863026,0.219235097532449 -00:01:33.9349,69.7605310419583,0.00255759048296495,0.0075223249498969,-0.0124305952542374,0.205958788892853 -00:01:33.9652,69.7605309974693,0.00378194449613964,0.0111233661651166,-0.0124600128621068,0.192658383391898 -00:01:33.9954,69.7605309357431,0.00502836513920085,0.0147893092329437,-0.0124754746945932,0.179336563411357 -00:01:34.0000,69.7605309250638,0.00521445712371827,0.0153366385991714,-0.0124761007730365,0.177351115183027 -00:01:34.0007,69.7605309233158,0.00524204525388028,0.0154177801584714,-0.0124751290644061,0.177032897943331 -00:01:34.0014,69.7605309215595,0.00526414665753761,0.0154827842868753,-0.0124716380527907,0.176714743152375 -00:01:34.0026,69.7605309186893,0.0052813258486837,0.0155333113196579,-0.0124573199123564,0.176197008278301 -00:01:34.0037,69.7605309158172,0.00527221470680572,0.0155065138435462,-0.0124309673564769,0.175680128911734 -00:01:34.0049,69.7605309129575,0.00523565219724701,0.0153989770507265,-0.0123920113273521,0.175164605183703 -00:01:34.0061,69.7605309101249,0.00517261344512594,0.0152135689562528,-0.0123408092899347,0.174650949879811 -00:01:34.0080,69.7605309057257,0.00502352879325306,0.0147750846860384,-0.0122364519426109,0.173841383908991 -00:01:34.0124,69.7605308961145,0.00448277433309089,0.0131846303914438,-0.0118963330809964,0.171973184989458 -00:01:34.0177,69.7605308862719,0.00358002628587749,0.0105294890761103,-0.0113403923234629,0.169798059891373 -00:01:34.0230,69.7605308787585,0.00255425195755804,0.00751250575752364,-0.0106723470810963,0.167736694247158 -00:01:34.0273,69.7605308744471,0.00171678941260593,0.00504938062531157,-0.0100734280102346,0.166143658627317 -00:01:34.0317,69.7605308717441,0.00094824891414237,0.00278896739453638,-0.0094572447193332,0.164643601191539 -00:01:34.0360,69.7605308704794,0.000285055299276952,0.000838397939049858,-0.00884605351339316,0.163237596687423 -00:01:34.0404,69.7605308704259,-0.000255362973773252,-0.000751067569921331,-0.00825913569577545,0.161923412971936 -00:01:34.0447,69.7605308713366,-0.000671311018180937,-0.0019744441711204,-0.00771278807882835,0.160696087425022 -00:01:34.0491,69.7605308729727,-0.000972849576935933,-0.00286132228510568,-0.00722017577168402,0.159548409540451 -00:01:34.0534,69.7605308751223,-0.00117743168933599,-0.00346303438039996,-0.00679125605571644,0.158471400223103 -00:01:34.0578,69.760530877611,-0.0013057193623264,-0.00384035106566588,-0.00643281285530465,0.157454795644809 -00:01:34.0621,69.7605308803053,-0.00137805563391133,-0.00405310480562155,-0.00614859258253134,0.156487521188969 -00:01:34.0665,69.7605308831095,-0.00141191929145869,-0.00415270379840792,-0.00593952367038159,0.15555813976788 -00:01:34.0708,69.760530885958,-0.00142023253868387,-0.0041771545255408,-0.00580400226515464,0.1546552619021 -00:01:34.0752,69.7605308888068,-0.00141118693562793,-0.00415054981067038,-0.00573822733370107,0.153767908529361 -00:01:34.0795,69.7605308916236,-0.00138823282831026,-0.0040830377303243,-0.0057365690034897,0.152885819884398 -00:01:34.0839,69.7605308943796,-0.00135118656352888,-0.00397407812802613,-0.00579195468557521,0.151999706640157 -00:01:34.0882,69.7605308970435,-0.00129747941334497,-0.00381611592160285,-0.00589625861363496,0.151101441654469 -00:01:34.0926,69.7605308995782,-0.00122353574033764,-0.00359863453040483,-0.00604068188052583,0.15018419276798 -00:01:34.0969,69.7605309019395,-0.00112603635297815,-0.00331187162640633,-0.00621611177898172,0.149242498949229 -00:01:34.1022,69.7605309045135,-0.000972479743639102,-0.00286023454011501,-0.00645846602840302,0.14805227443236 -00:01:34.1075,69.7605309066629,-0.000781012255046906,-0.00229709486778502,-0.00671778521798538,0.146815203525669 -00:01:34.1129,69.7605309083018,-0.000556403171546134,-0.00163647991631216,-0.00697965145348864,0.14552946898012 -00:01:34.1182,69.7605309093608,-0.000307752539924975,-0.000905154529191103,-0.00723136016903343,0.14419573357254 -00:01:34.1235,69.760530909796,-4.71860210520227e-05,-0.00013878241485889,-0.00746238472974326,0.142816840379031 -00:01:34.1300,69.7605309094681,0.000266926865791113,0.000785079017032687,-0.00770420614451861,0.141079977228798 -00:01:34.1365,69.7605309082403,0.000556064134087397,0.00163548274731587,-0.00789398597320271,0.139293839839119 -00:01:34.1450,69.7605309054595,0.00086816664945169,0.00255343132191674,-0.00805726563762578,0.136896557597337 -00:01:34.1535,69.7605309016433,0.00108522154561266,0.00319182807533134,-0.00812591859231724,0.134464337061049 -00:01:34.1620,69.7605308971592,0.00120588888715793,0.00354673202105273,-0.00811124736995883,0.13202350400271 -00:01:34.1705,69.7605308923496,0.00124603280985814,0.00366480238193572,-0.00803161411195507,0.129596235956821 -00:01:34.1791,69.7605308874785,0.00123151395845337,0.00362209987780402,-0.0079091470621919,0.127198722571232 -00:01:34.1876,69.760530882706,0.00119060702625929,0.00350178537135085,-0.00776648001100467,0.124840487940256 -00:01:34.1961,69.7605308780888,0.00114840872398916,0.00337767271761518,-0.0076240564163415,0.122524631191231 -00:01:34.2046,69.7605308735972,0.00112397507983574,0.00330580905834043,-0.0074982271351573,0.120248753446097 -00:01:34.2132,69.7605308691392,0.00112973773913895,0.00332275805629102,-0.00740019977903271,0.118006325834468 -00:01:34.2235,69.7605308635747,0.00118624470373063,0.00348895501097244,-0.00732651134146646,0.115317367548551 -00:01:34.2361,69.7605308561802,0.00132827755450819,0.00390669868972997,-0.00730144220847919,0.112052340746917 -00:01:34.2487,69.7605308477482,0.00154294107697586,0.00453806199110548,-0.00733425941199163,0.108786250801436 -00:01:34.2614,69.7605308379264,0.00180879777837789,0.00531999346581733,-0.00740273744286371,0.105498714316508 -00:01:34.2740,69.7605308264893,0.00210068551847406,0.00617848681904134,-0.00748258255561121,0.102179194090958 -00:01:34.2866,69.7605308133614,0.00239209282748514,0.00703556713966218,-0.00755329529397854,0.0988269037138506 -00:01:34.2993,69.7605307986024,0.00266209643292295,0.00782969539094984,-0.00760180722948944,0.0954484446995137 -00:01:34.3119,69.7605307823633,0.00289973196212331,0.00852862341800974,-0.00762349920984773,0.0920543735445 -00:01:34.3292,69.7605307580369,0.00317700716422273,0.00934413871830214,-0.00761707953195309,0.0873945693593971 -00:01:34.3465,69.7605307316132,0.00341849088903408,0.0100543849677473,-0.00758576969902206,0.0827452231497076 -00:01:34.3639,69.7605307032489,0.00365428475060196,0.0107478963252999,-0.00755030771640426,0.0781149181615439 -00:01:34.3812,69.7605306728939,0.0039099037956653,0.0114997170460744,-0.00752625121311656,0.0735019187912346 -00:01:34.3985,69.76053064035,0.00419826282265108,0.0123478318313267,-0.00751999747210637,0.068897963767827 -00:01:34.4248,69.7605305860851,0.00469023245042768,0.0137948013247873,-0.00753545090315466,0.0618933377894264 -00:01:34.4512,69.7605305256423,0.00521746872793801,0.0153454962586412,-0.00756155549842468,0.0548712933528135 -00:01:34.4775,69.7605304588066,0.00574631938120196,0.0169009393564763,-0.0075797302499781,0.0478305483487985 -00:01:34.5000,69.7605303968813,0.00618554628593474,0.0181927831939257,-0.00758376442158297,0.0418265250450548 -00:01:34.5005,69.7605303952191,0.00619555827981354,0.0182222302347457,-0.00758314045653429,0.0416711937725348 -00:01:34.5011,69.7605303935547,0.00620253797455188,0.018242758748682,-0.00758102813220164,0.0415158996936206 -00:01:34.5020,69.7605303910025,0.00620345434201424,0.0182454539471007,-0.0075729968826947,0.0412780549404215 -00:01:34.5029,69.7605303884528,0.00619047473284189,0.0182072786260055,-0.00755814135938038,0.041040575574136 -00:01:34.5038,69.7605303859116,0.00616236336497376,0.0181245981322758,-0.00753583795531849,0.0408036801309634 -00:01:34.5047,69.7605303833851,0.00611907329123747,0.0179972743859926,-0.00750602890143601,0.0405676015749738 -00:01:34.5059,69.7605303798914,0.00603442546936954,0.0177483102040281,-0.00745227921774434,0.040239513964495 -00:01:34.5079,69.7605303742877,0.00584013462816373,0.0171768665534227,-0.00733562557115083,0.0397068489665334 -00:01:34.5113,69.7605303656816,0.00540317532341345,0.0158916921276866,-0.00707983597132217,0.038863962882224 -00:01:34.5155,69.7605303559128,0.00469581888277405,0.013811232008159,-0.00665802607368144,0.0378485077170928 -00:01:34.5196,69.7605303475923,0.00389362357668958,0.011451834049087,-0.00615024622449146,0.0369014757678043 -00:01:34.5229,69.7605303422152,0.00325525417283223,0.00957427697891833,-0.00571308145098121,0.0362214083204046 -00:01:34.5261,69.7605303377785,0.00263845863641995,0.00776017246005866,-0.00525185067505889,0.0355927470652636 -00:01:34.5294,69.7605303342332,0.00206715606735702,0.00607987078634417,-0.00477739253490673,0.0350176824570877 -00:01:34.5326,69.7605303314984,0.00155832098497047,0.00458329701461902,-0.00429964175314324,0.0344971504189827 -00:01:34.5359,69.7605303294732,0.00112231790131492,0.00330093500386741,-0.00382767501942192,0.0340310018565822 -00:01:34.5391,69.7605303280454,0.000763425877429874,0.00224537022773492,-0.00336964032809221,0.0336181099422192 -00:01:34.5424,69.7605303271004,0.000480656082618835,0.00141369436064363,-0.00293269952316062,0.0332564746643278 -00:01:34.5467,69.76053032638,0.000211666097731314,0.000622547346268569,-0.00239125867535084,0.0328462513047431 -00:01:34.5511,69.7605303260986,4.86964507755539e-05,0.000143224855222217,-0.00191054174797365,0.03251447525694 -00:01:34.5554,69.760530326071,-3.38702906976578e-05,-9.96185020519347e-05,-0.00149985362735166,0.0322511703778437 -00:01:34.5588,69.7605303261416,-5.92768047163318e-05,-0.000174343543283329,-0.00123580599424386,0.0320890668588968 -00:01:34.5621,69.7605303262361,-6.37938353997186e-05,-0.000187628927646231,-0.00101864602168454,0.0319553895541269 -00:01:34.5655,69.7605303263291,-5.68952589986797e-05,-0.00016733899705494,-0.000848429213735761,0.031844584928043 -00:01:34.5688,69.760530326409,-4.59745437581556e-05,-0.000135219246347516,-0.000724055197025789,0.0317511954645606 -00:01:34.5722,69.7605303264733,-3.62796417982792e-05,-0.000106704828818468,-0.000643586917550622,0.0316699336638601 -00:01:34.5755,69.7605303265262,-3.08539591178239e-05,-9.07469385818349e-05,-0.000604483540932545,0.031595767653901 -00:01:34.5789,69.7605303265748,-3.0807641961955e-05,-9.06107116528089e-05,-0.000603751535312238,0.0315239886918183 -00:01:34.5822,69.760530326627,-3.56356813271977e-05,-0.000104810827432935,-0.000638044090257575,0.0314502614149605 -00:01:34.5856,69.7605303266888,-4.36256845184323e-05,-0.000128310836818919,-0.000703734155670065,0.0313706620927582 -00:01:34.5889,69.7605303267631,-5.22923919305379e-05,-0.000153801152736876,-0.000796971935763819,0.0312817085261839 -00:01:34.5923,69.7605303268487,-5.88007411068063e-05,-0.000172943356196489,-0.000913731638089879,0.0311803836551677 -00:01:34.5956,69.7605303269402,-6.03461670277123e-05,-0.000177488726552095,-0.00104985596506286,0.0310641536995907 -00:01:34.5990,69.760530327028,-5.4469620874894e-05,-0.0001602047672791,-0.00120111187939594,0.0309309802410127 -00:01:34.6023,69.7605303270993,-3.92934683292236e-05,-0.000115569024497716,-0.00136326792649372,0.0307793243371806 -00:01:34.6065,69.76053032714,-5.63861817441635e-06,-1.65841711012246e-05,-0.00157466944039993,0.0305620298031339 -00:01:34.6107,69.7605303270992,4.47284111458941e-05,0.0001315541504291,-0.00178912278788997,0.0303133466763882 -00:01:34.6160,69.7605303268792,0.000130015741745648,0.000382399240428376,-0.00205400960190146,0.0299533489924676 -00:01:34.6213,69.7605303264289,0.00023344957169307,0.000686616387332559,-0.00230126383767444,0.0295455525099798 -00:01:34.6266,69.7605303257154,0.000346138418258409,0.00101805417134826,-0.0025216021879063,0.0290940859163242 -00:01:34.6331,69.7605303244653,0.0004825103752705,0.00141914816256029,-0.00274536180425958,0.0284884222039761 -00:01:34.6397,69.7605303228343,0.00060136815249844,0.00176872986028953,-0.00291145017697519,0.0278379854808376 -00:01:34.6462,69.7605303208926,0.000690463946088763,0.00203077631202577,-0.00301765058519769,0.0271561631223084 -00:01:34.6527,69.7605303187373,0.000743562703764303,0.00218694912871854,-0.00306616830748071,0.0264564179908114 -00:01:34.6592,69.7605303164755,0.000760540984815872,0.00223688524945845,-0.00306287551290964,0.0257513052435857 -00:01:34.6647,69.7605303145815,0.00075014370057288,0.00220630500168494,-0.00302625724708886,0.0251680743803084 -00:01:34.6701,69.7605303127341,0.000722450475229624,0.00212485433891066,-0.00296545734137759,0.0245940928323359 -00:01:34.6755,69.7605303109705,0.000682700967985006,0.00200794402348531,-0.00288682867502322,0.0240334022602137 -00:01:34.6809,69.7605303093144,0.000636088578316437,0.00187084875975423,-0.00279672212620192,0.0234887956707941 -00:01:34.6864,69.7605303077773,0.000587260144875204,0.00172723572022119,-0.00270119403138185,0.0229618889498277 -00:01:34.6918,69.7605303063602,0.00054001110202462,0.00158826794713124,-0.00260575109370337,0.0224532009453245 -00:01:34.6989,69.7605303046649,0.000485298088733439,0.00142734731980423,-0.00248893105614902,0.0218114010989202 -00:01:34.7080,69.7605303027323,0.000432715047434556,0.00127269131598399,-0.00236543353362787,0.0210340507474977 -00:01:34.7170,69.7605303009753,0.000401127442632352,0.00117978659597751,-0.0022777480960537,0.0202902011864575 -00:01:34.7261,69.7605302993071,0.000390633911083379,0.00114892326789229,-0.00222966321557307,0.0195680203373258 -00:01:34.7334,69.7605302979739,0.000396558420274216,0.00116634829492417,-0.00221891952082464,0.0189941225772019 -00:01:34.7407,69.7605302966015,0.000414038914562228,0.00121776151341832,-0.00222983196044673,0.0184202980572287 -00:01:34.7480,69.7605302951542,0.00044111260603503,0.00129739001775009,-0.00225774183286926,0.0178415595770152 -00:01:34.7553,69.7605302936032,0.000475695419874173,0.00139910417610051,-0.00229733318384465,0.0172542330043564 -00:01:34.7626,69.7605302919275,0.000515366204060844,0.00151578295312013,-0.00234322396950835,0.0166560056287495 -00:01:34.7699,69.7605302901142,0.00055753925289546,0.00163982133204547,-0.00239043817737955,0.0160458838079645 -00:01:34.7798,69.7605302874406,0.000613665099558608,0.00180489735164296,-0.00244848844428588,0.0152032834516594 -00:01:34.7926,69.7605302836062,0.000678124909092898,0.00199448502674382,-0.00250488271919828,0.0140810248063762 -00:01:34.8054,69.760530279437,0.000727505642883526,0.00213972247906919,-0.00253474000635295,0.0129394676823512 -00:01:34.8183,69.7605302750241,0.000760215809445886,0.00223592885131143,-0.00253871896638662,0.0117901237816168 -00:01:34.8311,69.7605302704544,0.000779415418971301,0.00229239829109206,-0.00252317260367781,0.0106430465409696 -00:01:34.8440,69.7605302657891,0.000791072030698767,0.00232668244323167,-0.00249732044909085,0.00950491573784143 -00:01:34.8568,69.760530261054,0.000801604001021642,0.00235765882653424,-0.00247033172631187,0.00837837518000408 -00:01:34.8696,69.7605302562419,0.000816127873998081,0.00240037609999436,-0.00244917372621344,0.00726249224075719 -00:01:34.8870,69.7605302495347,0.00084705430476835,0.00249133619049515,-0.00243578452536297,0.00576096071293819 -00:01:34.9046,69.7605302424533,0.000891423558971375,0.00262183399697463,-0.00243881152472636,0.00424754869912714 -00:01:34.9222,69.7605302349749,0.000945565547364402,0.00278107513930706,-0.00245256674495461,0.00272939093942712 -00:01:34.9398,69.7605302270441,0.00100390857821572,0.00295267228886975,-0.00246913921885224,0.00120235727982465 -00:01:34.9535,69.7605302205056,0.00104892435250016,0.00308507162500046,-0.00247964396229005,7.92152707984409e-14 -00:01:34.9535,69.7605302205056,0.00104893661696545,0.00308510769695722,-0.00247963858067675,-4.12896607468536e-16 -00:01:34.9711,69.7605302115483,0.00110114322764641,0.00323865655190121,-0.00248512369363058,-0.00154207871846937 -00:01:34.9887,69.7605302021869,0.00115082118059363,0.00338476817821655,-0.00248650860294777,-0.00308501680630907 -00:01:35.0000,69.7605301960082,0.00118228953548202,0.00347732216318241,-0.0024864233184696,-0.00407624352024395 -00:01:35.0004,69.7605301957443,0.00118347698531206,0.00348081466268252,-0.00248624647938117,-0.00411840176990094 -00:01:35.0009,69.7605301954809,0.00118426120458838,0.00348312118996583,-0.00248562598989874,-0.00416055362981344 -00:01:35.0017,69.760530195047,0.00118399941700339,0.00348235122648055,-0.00248289646478021,-0.00422997004314419 -00:01:35.0025,69.7605301946138,0.0011814083105932,0.00347473032527413,-0.00247760931620322,-0.00429927268027453 -00:01:35.0033,69.7605301941821,0.001176203129435,0.00345942096892646,-0.00246944579859588,-0.00436838692635244 -00:01:35.0041,69.7605301937528,0.00116832078965073,0.0034362376166198,-0.00245832099277303,-0.00443723182773793 -00:01:35.0051,69.7605301932271,0.001154986376798,0.00339701875528825,-0.00244055958515857,-0.00452179823093198 -00:01:35.0065,69.7605301924742,0.00112891185768732,0.00332032899319799,-0.00240711563804013,-0.00464373626711497 -00:01:35.0086,69.7605301913768,0.0010762851270301,0.00316554449126501,-0.00234090648489874,-0.00482409049050832 -00:01:35.0116,69.7605301899733,0.000983128288971029,0.00289155379109126,-0.00222292068778838,-0.00506156362443249 -00:01:35.0145,69.7605301887083,0.000872245406990397,0.00256542766761882,-0.00207757714584768,-0.00528535853126967 -00:01:35.0175,69.7605301876005,0.000751104516548175,0.00220913093102404,-0.00190968379882581,-0.00549290236110082 -00:01:35.0204,69.7605301866595,0.000626635324207139,0.00184304507119747,-0.00172384340744892,-0.00568206970869323 -00:01:35.0234,69.760530185886,0.000504914089403839,0.00148504143942306,-0.00152441249858572,-0.00585120547542809 -00:01:35.0263,69.7605301852729,0.000390980899348475,0.00114994382161316,-0.0013155075120542,-0.00599910233190002 -00:01:35.0293,69.7605301848071,0.000288735416643559,0.000849221813657527,-0.0011010052699822,-0.00612497218209355 -00:01:35.0328,69.7605301844151,0.000185262127125337,0.000544888609192167,-0.000841411753666062,-0.00624649924259305 -00:01:35.0364,69.7605301841734,0.000104987014035123,0.000308785335397421,-0.000584675255007589,-0.00633577998297919 -00:01:35.0406,69.7605301840246,3.96459081266844e-05,0.000116605612137307,-0.000287168993723683,-0.00640161136196176 -00:01:35.0459,69.760530183964,1.74388764492068e-06,5.12908130859025e-06,5.11838575335343e-05,-0.00642400973279804 -00:01:35.0511,69.7605301839531,7.67818612066438e-07,2.25829003548952e-06,0.000349300476438205,-0.00638762650862442 -00:01:35.0564,69.7605301839193,2.3655453844482e-05,6.95748642484764e-05,0.000598906036949103,-0.00630060779771276 -00:01:35.0616,69.7605301838201,5.71769045426393e-05,0.00016816736630188,0.000794887895997835,-0.00617235994908005 -00:01:35.0657,69.7605301836876,8.34656688314113e-05,0.000245487261268857,0.000909498904676939,-0.00604906697697678 -00:01:35.0698,69.7605301835095,0.000105265058345888,0.000309603112782023,0.000990021515527487,-0.00591161308280676 -00:01:35.0740,69.7605301832967,0.0001200100805271,0.000352970825079706,0.0010377587804793,-0.00576485793108588 -00:01:35.0781,69.7605301830637,0.00012655306268213,0.000372214890241558,0.00105483948520578,-0.00561338102838971 -00:01:35.0822,69.7605301828258,0.000124979347927749,0.000367586317434555,0.00104404850612538,-0.00546141294489599 -00:01:35.0863,69.7605301825974,0.000116334664209435,0.000342160777086574,0.00100867533168302,-0.00531275138311058 -00:01:35.0904,69.7605301823902,0.000102306747759326,0.000300902199292137,0.000952364615804283,-0.00517069516587082 -00:01:35.0945,69.7605301822125,8.49032216576037e-05,0.000249715357816482,0.000878970941467679,-0.0050380013449834 -00:01:35.0986,69.7605301820689,6.61610243309308e-05,0.00019459124803215,0.00079242285625544,-0.00491686391665598 -00:01:35.1027,69.7605301819601,4.79123863916481e-05,0.000140918783504847,0.000696600093851248,-0.00480891171856802 -00:01:35.1068,69.760530181884,3.16211358080649e-05,9.30033406119555e-05,0.000595226417028098,-0.00471522308722695 -00:01:35.1109,69.760530181836,1.82926700664915e-05,5.38019707837984e-05,0.000491779405949133,-0.0046363548320222 -00:01:35.1160,69.7605301818056,6.73041454974463e-06,1.97953369110136e-05,0.000366755572358952,-0.00455976268262328 -00:01:35.1221,69.7605301817944,-2.36286608012912e-07,-6.94960611802682e-07,0.000225270952517252,-0.0044957825582285 -00:01:35.1298,69.760530181792,-2.60176718280257e-07,-7.65225642000757e-07,7.00227397573015e-05,-0.00445455206920389 -00:01:35.1376,69.7605301817813,5.29372270823852e-06,1.55697726712898e-05,-4.98171406408408e-05,-0.00445083636991002 -00:01:35.1437,69.7605301817594,1.05007080271397e-05,3.08844353739403e-05,-0.000115937047221113,-0.00446820356016075 -00:01:35.1498,69.7605301817248,1.45416335773831e-05,4.2769510521715e-05,-0.000156901358232078,-0.00449710068081022 -00:01:35.1559,69.7605301816818,1.64900997550748e-05,4.8500293397279e-05,-0.000174123556042775,-0.00453227470860132 -00:01:35.1620,69.7605301816364,1.6176774970915e-05,4.75787499144558e-05,-0.000170259450282418,-0.004568935721782 -00:01:35.1681,69.7605301815943,1.40047433823182e-05,4.11904217127007e-05,-0.000148815326230469,-0.00460294621442758 -00:01:35.1741,69.7605301815597,1.0696666713947e-05,3.14607844527852e-05,-0.000113807261412062,-0.0046309666580918 -00:01:35.1802,69.7605301815347,7.04569780831236e-06,2.07226406126834e-05,-6.94481930199762e-05,-0.00465053474637737 -00:01:35.1863,69.7605301815194,3.72195063884508e-06,1.0946913643662e-05,-1.98693550145952e-05,-0.0046600799212229 -00:01:35.1924,69.7605301815122,1.16056130060616e-06,3.41341559001813e-06,3.11128666946341e-05,-0.00465888209574274 -00:01:35.1985,69.760530181511,-4.67460571857377e-07,-1.37488403487464e-06,8.01770450237307e-05,-0.00464698571262545 -00:01:35.2070,69.7605301815139,-1.31569120858686e-06,-3.86968002525546e-06,0.000140115224106237,-0.00461419865371273 -00:01:35.2196,69.7605301815189,-8.02144172609937e-07,-2.35924756649981e-06,0.000202626505135266,-0.00453946151818463 -00:01:35.2285,69.760530181521,-1.75779489093906e-07,-5.16998497335017e-07,0.000226291187175208,-0.00447256562417941 -00:01:35.2374,69.7605301815214,1.1400840842189e-07,3.35318848299675e-07,0.000232669962779788,-0.00440088057209969 -00:01:35.2463,69.7605301815214,-1.95119147010772e-08,-5.7387984414933e-08,0.000224390624954463,-0.00432941188280385 -00:01:35.2552,69.7605301815224,-4.07130478736826e-07,-1.19744258452008e-06,0.000205377467050619,-0.00426211580631102 -00:01:35.2641,69.7605301815249,-8.04296961896512e-07,-2.36557929969562e-06,0.000180044854881145,-0.00420166164297866 -00:01:35.2730,69.7605301815286,-1.0345029328016e-06,-3.04265568471058e-06,0.000152648971374356,-0.00414937751124266 -00:01:35.2819,69.7605301815328,-1.0481902148682e-06,-3.08291239667118e-06,0.000126806340257396,-0.00410536762678247 -00:01:35.2936,69.7605301815378,-8.44877340966078e-07,-2.48493335578258e-06,9.97396746915347e-05,-0.00405824164543671 -00:01:35.3084,69.7605301815426,-5.5666473928257e-07,-1.63724923318403e-06,7.99786419081649e-05,-0.00401047031205566 -00:01:35.3202,69.7605301815455,-4.85066212957144e-07,-1.42666533222689e-06,7.58307389394719e-05,-0.00397750495145744 -00:01:35.3320,69.7605301815485,-5.63417890378803e-07,-1.6571114422906e-06,8.00977861079415e-05,-0.00394464103182838 -00:01:35.3439,69.760530181552,-7.04909010715777e-07,-2.07326179622287e-06,8.95347689858837e-05,-0.00390904831247189 -00:01:35.3557,69.7605301815562,-8.2319923661865e-07,-2.42117422534897e-06,0.00010067188274859,-0.00386928761528815 -00:01:35.3675,69.7605301815608,-8.81567828164174e-07,-2.59284655342404e-06,0.000110587769443134,-0.00382522868599141 -00:01:35.3841,69.7605301815675,-8.84601950383763e-07,-2.60177044230519e-06,0.000118900534427184,-0.00375846709047156 -00:01:35.4040,69.7605301815754,-8.50063817354005e-07,-2.50018769810001e-06,0.000119672631281318,-0.00367546455664332 -00:01:35.4238,69.7605301815831,-8.09164441465931e-07,-2.37989541607627e-06,0.000112991591577524,-0.00359433214123526 -00:01:35.4437,69.7605301815903,-7.54732024809253e-07,-2.21980007296839e-06,0.000103505806076812,-0.00351849736378012 -00:01:35.4636,69.7605301815969,-6.94606944138253e-07,-2.04296160040663e-06,9.54947782216964e-05,-0.00344849648502592 -00:01:35.4834,69.7605301816031,-6.51802650571761e-07,-1.91706661932871e-06,9.11419758484325e-05,-0.00338271502215228 -00:01:35.5000,69.7605301816081,-6.35610451469772e-07,-1.86944250432286e-06,9.03192511742849e-05,-0.00332961653508811 -00:01:35.5224,69.7605301816146,-6.24510941476824e-07,-1.83679688669654e-06,9.1200957839302e-05,-0.00325763158352536 -00:01:35.5448,69.760530181621,-6.11443503702956e-07,-1.79836324618516e-06,9.21471933055802e-05,-0.00318512274226771 -00:01:35.5730,69.7605301816288,-5.83935652653858e-07,-1.71745780192311e-06,9.1121618027004e-05,-0.00309406178434095 -00:01:35.6158,69.7605301816399,-5.34383163256785e-07,-1.57171518604937e-06,8.6146628864446e-05,-0.0029607034456998 -00:01:35.6586,69.76053018165,-4.81231148382034e-07,-1.4153857305354e-06,8.05874291196861e-05,-0.00283475835059822 -00:01:35.7014,69.7605301816591,-4.3728008201099e-07,-1.28611788826762e-06,7.67967354324858e-05,-0.00271547535829539 -00:01:35.7845,69.7605301816748,-3.73890960240378e-07,-1.09967929482464e-06,7.15832625514852e-05,-0.00249673823748531 -00:01:35.8677,69.760530181688,-3.1328781780376e-07,-9.21434758246352e-07,6.61859193250701e-05,-0.00229454440542469 -00:01:35.9508,69.7605301816992,-2.66729736031862e-07,-7.84499223623125e-07,6.04442382121764e-05,-0.00210882842402619 -00:01:36.0000,69.760530181705,-2.40918498172067e-07,-7.08583818153137e-07,5.73493549024161e-05,-0.00200659153779271 -00:01:36.1000,69.7605301817151,-1.9333350127068e-07,-5.68627944913764e-07,5.19397242562506e-05,-0.00181326465905543 -00:01:36.1999,69.7605301817233,-1.57661210542216e-07,-4.63709442771223e-07,4.70194518968363e-05,-0.00163835767003902 -00:01:36.2999,69.7605301817299,-1.28999219788568e-07,-3.79409469966376e-07,4.24348416167804e-05,-0.00148031913141239 -00:01:36.3999,69.7605301817353,-1.04831059343386e-07,-3.08326645127607e-07,3.8319238814567e-05,-0.00133759362672229 -00:01:36.5000,69.7605301817398,-8.51836445405939e-08,-2.50540131001747e-07,3.46416933657658e-05,-0.00120863036566561 -00:01:36.6000,69.7605301817434,-6.94597460601932e-08,-2.04293370765274e-07,3.13071998214304e-05,-0.00109208258147271 -00:01:36.6999,69.7605301817463,-5.66104826794555e-08,-1.66501419645457e-07,2.82825127204044e-05,-0.000986775502327899 -00:01:36.7999,69.7605301817487,-4.6043613971013e-08,-1.35422394032391e-07,2.55540716760769e-05,-0.000891628685456039 -00:01:36.8999,69.7605301817506,-3.74446128629054e-08,-1.10131214302663e-07,2.30919871442489e-05,-0.000805654987855397 -00:01:37.0000,69.7605301817522,-3.04636968690793e-08,-8.95991084384685e-08,2.08656096509075e-05,-0.000727969428516331 -00:01:37.1000,69.7605301817535,-2.47688652882985e-08,-7.28496037891132e-08,1.88530311093898e-05,-0.000657775199807297 -00:01:37.1999,69.7605301817545,-2.01216046596684e-08,-5.91811901754954e-08,1.7035113158084e-05,-0.000594349918009205 -00:01:37.2999,69.7605301817553,-1.63393965132781e-08,-4.80570485684651e-08,1.53927103173701e-05,-0.000537040162526941 -00:01:37.3999,69.760530181756,-1.32621881933973e-08,-3.90064358629333e-08,1.39084705185474e-05,-0.000485256320275612 -00:01:37.5000,69.7605301817566,-1.07564199905497e-08,-3.16365293839697e-08,1.25672947791857e-05,-0.000438465779752831 -00:01:37.6000,69.760530181757,-8.71683875272665e-09,-2.56377610374313e-08,1.13555088709218e-05,-0.000396187024639429 -00:01:37.6999,69.7605301817574,-7.05822838050087e-09,-2.07594952367673e-08,1.02605794358026e-05,-0.000357984943733694 -00:01:37.7999,69.7605301817577,-5.70986712315181e-09,-1.67937268327994e-08,9.27120586894237e-06,-0.000323466464404092 -00:01:37.8999,69.7605301817579,-4.61396389422185e-09,-1.3570482041829e-08,8.37723043397522e-06,-0.000292276416629469 -00:01:38.0000,69.7605301817581,-3.72377417822219e-09,-1.09522769947711e-08,7.5694629539675e-06,-0.000264093851454153 -00:01:38.1000,69.7605301817583,-3.00118395557972e-09,-8.82701163405801e-09,6.8395838448131e-06,-0.00023862876906014 -00:01:38.1999,69.7605301817584,-2.4149966676302e-09,-7.10293137538293e-09,6.18008070215138e-06,-0.000215619140576019 -00:01:38.2999,69.7605301817585,-1.93978894923411e-09,-5.70526161539445e-09,5.58416992817949e-06,-0.000194828201862331 -00:01:38.3999,69.7605301817586,-1.55487577407519e-09,-4.5731640413976e-09,5.04572012120598e-06,-0.000176042016245856 -00:01:38.5000,69.7605301817586,-1.24339471057633e-09,-3.65704326640098e-09,4.55918987571056e-06,-0.000159067276329936 -00:01:38.6000,69.7605301817587,-9.91595768541565e-10,-2.91645814276931e-09,4.1195728049709e-06,-0.000143729314942794 -00:01:38.6999,69.7605301817587,-7.88281113040611e-10,-2.31847386188415e-09,3.72234558197551e-06,-0.000129870306846423 -00:01:38.7999,69.7605301817587,-6.24334748589948e-10,-1.83627867232338e-09,3.36342079682087e-06,-0.000117347644805312 -00:01:38.8999,69.7605301817588,-4.92333832726079e-10,-1.44804068448847e-09,3.03910508501668e-06,-0.000106032472483438 -00:01:39.0000,69.7605301817588,-3.8623603823346e-10,-1.13598834774547e-09,2.7460612939695e-06,-9.58083584871335e-05 -00:01:39.1000,69.7605301817588,-3.01125667446242e-10,-8.85663727783065e-10,2.48127407211112e-06,-8.65700982133231e-05 -00:01:39.1999,69.7605301817588,-2.33005051897573e-10,-6.85308976169333e-10,2.24201879430536e-06,-7.82226313316612e-05 -00:01:39.2999,69.7605301817588,-1.78624153916105e-10,-5.25365158576779e-10,2.02583355215e-06,-7.06800636545424e-05 -00:01:39.3999,69.7605301817588,-1.35342072869007e-10,-3.98064920202963e-10,1.83049383380693e-06,-6.3864783290061e-05 -00:01:39.5000,69.7605301817588,-1.01014138608777e-10,-2.97100407672872e-10,1.65398962493354e-06,-5.77066620198771e-05 -00:01:39.6000,69.7605301817588,-7.38996924605742e-11,-2.17352036648748e-10,1.49450472281678e-06,-5.21423336937706e-05 -00:01:39.6999,69.7605301817588,-5.25869018884928e-11,-1.54667358495567e-10,1.3503980510343e-06,-4.71145422035125e-05 -00:01:39.7999,69.7605301817588,-3.59315189692383e-11,-1.05680938144819e-10,1.22018677374449e-06,-4.25715523248974e-05 -00:01:39.8999,69.7605301817588,-2.3006962055612e-11,-6.76675354576822e-11,1.10253103650486e-06,-3.84666173695005e-05 -00:01:40.0000,69.7605301817588,-1.30636237643301e-11,-3.8422422836265e-11,9.96220179233319e-07,-3.47574981686717e-05 +00:00:10.9386,69.999433992961,3.05316900074511,8.97990882572092,0.0875827341669621,1.87082023774708 +00:00:10.9455,69.9994240965375,3.06348679961296,9.0102552929793,0.0874699159381318,1.89242562294844 +00:00:10.9525,69.9994141664055,3.0686641476348,9.02548278716118,0.0872535285952065,1.91396404682688 +00:00:10.9642,69.9993975527732,3.07389885173932,9.04087897570387,0.0868285786732045,1.94976239381323 +00:00:10.9759,69.9993809052598,3.0801676125913,9.05931650762147,0.0864325823507468,1.9853974764232 +00:00:10.9876,69.9993642273354,3.0885007018394,9.0838255936453,0.0860853774126798,2.02093034361919 +00:00:11.0000,69.9993464668197,3.10166774911797,9.12255220328814,0.0858117202905464,2.05853873643003 +00:00:11.0008,69.9993452011537,3.10344978502094,9.12779348535571,0.0858097592891949,2.06120925880377 +00:00:11.0017,69.9993439343145,3.10687615220006,9.13787103588252,0.0858413710483608,2.06388031001995 +00:00:11.0031,69.9993419016791,3.11755443340229,9.16927774530084,0.0859977289147714,2.06816076057541 +00:00:11.0045,69.999339859698,3.13521048757934,9.22120731640981,0.0862954457957507,2.07245264243962 +00:00:11.0059,69.9993378038865,3.15997602421063,9.29404713003128,0.0867359203162525,2.07676287095717 +00:00:11.0074,69.9993357297237,3.19154999555329,9.38691175162732,0.0873113727324823,2.08109832858968 +00:00:11.0101,69.9993315772817,3.27154735814898,9.62219811220288,0.0887897210660319,2.08972756487135 +00:00:11.0156,69.9993230744776,3.48669960165763,10.2549988284048,0.0927583556212309,2.10714078865102 +00:00:11.0210,69.9993139481685,3.7685462119979,11.0839594470526,0.0978388237339808,2.12541763946713 +00:00:11.0264,69.9993040570127,4.10024876066672,12.0595551784315,0.10361075613969,2.14472407995762 +00:00:11.0318,69.9992932977208,4.46397373776707,13.1293345228443,0.109686550419835,2.16515732297407 +00:00:11.0373,69.9992816121522,4.84139007561796,14.239382575347,0.115726042661413,2.18674520601102 +00:00:11.0427,69.9992689882292,5.21438391439987,15.3364232776467,0.121442747222925,2.2094548243266 +00:00:11.0481,69.9992554578568,5.56605480521512,16.3707494271033,0.126607664783193,2.2332035177135 +00:00:11.0535,69.9992410923441,5.88178934945275,17.2993804395669,0.131051117575205,2.2578703191734 +00:00:11.0589,69.9992259954895,6.15018268558872,18.0887726046727,0.134662165651043,2.28330733208182 +00:00:11.0659,69.999205917282,6.41217560007795,18.8593400002293,0.137977992586973,2.31655959053727 +00:00:11.0747,69.9991794519075,6.61098041611877,19.4440600474082,0.140173001371704,2.35970600821179 +00:00:11.0835,69.9991524605098,6.66867774596103,19.613758076356,0.140337243886176,2.40322623201998 +00:00:11.0923,69.9991254540207,6.61152951856041,19.4456750545895,0.138882508313992,2.44656220013361 +00:00:11.1011,69.9990988238818,6.47596517209366,19.0469563885108,0.136321077157984,2.4892911574073 +00:00:11.1099,69.9990728117397,6.30070097517494,18.5314734563969,0.133187424739292,2.53115085887778 +00:00:11.1186,69.9990475114532,6.12045291198323,18.0013320940683,0.129970669436199,2.57203696552581 +00:00:11.1274,69.999022892052,5.96219303162647,17.5358618577249,0.127066322109566,2.61198177147982 +00:00:11.1362,69.9989988312742,5.84378521716909,17.1876035799091,0.124749456123861,2.65112137606539 +00:00:11.1450,69.9989751514963,5.77431308579323,16.9832737817448,0.123167859823796,2.68965766861728 +00:00:11.1571,69.9989428094608,5.75915895470808,16.938702807965,0.122210534762704,2.74212469058478 +00:00:11.1692,69.9989103354537,5.82381384900625,17.1288642617831,0.122456078758256,2.79443178464203 +00:00:11.1813,69.9988773569651,5.94495125264773,17.4851507430816,0.123531274530269,2.84700189053714 +00:00:11.1934,69.9988436371149,6.09444580748297,17.924840610244,0.12499649158647,2.90009505631359 +00:00:11.2055,69.9988090898676,6.24538265074402,18.3687725021883,0.12644885769309,2.95379571809154 +00:00:11.2176,69.9987737607253,6.37702499636562,18.7559558716636,0.127594714345354,3.00804152530628 +00:00:11.2297,69.9987377851917,6.47767153279955,19.0519750964693,0.128281093510208,3.06267508681756 +00:00:11.2450,69.9986916923917,6.55873557758006,19.2903987575884,0.128488512691017,3.13194323460435 +00:00:11.2603,69.9986451585083,6.59979269408023,19.4111549825889,0.128137893056119,3.20118338194422 +00:00:11.2756,69.9985983917541,6.62012318218684,19.4709505358436,0.127507725954959,3.27017592402578 +00:00:11.2909,69.9985514712374,6.63930248933143,19.5273602627395,0.126872669455961,3.33884177105996 +00:00:11.3061,69.9985043612118,6.6713124724957,19.6215072720462,0.126424783694459,3.4072239625464 +00:00:11.3214,69.9984569562629,6.72207666594665,19.7708137233725,0.126241352326596,3.47543758301873 +00:00:11.3457,69.998380871421,6.83285637340508,20.0966363923679,0.12636691638934,3.58358480185772 +00:00:11.3699,69.998303466625,6.96127691667051,20.4743438725603,0.126725047157979,3.69191492699142 +00:00:11.3941,69.9982246711831,7.08554124786488,20.8398271996026,0.12701807396057,3.80049566789902 +00:00:11.4184,69.9981445785017,7.19455587211945,21.1604584474101,0.127103674298114,3.90922738629828 +00:00:11.4501,69.9980378791523,7.31968265170214,21.5284783873592,0.126983947727354,4.0517250389291 +00:00:11.4819,69.9979293466343,7.4403005126193,21.8832368018215,0.126811394013964,4.19408565303053 +00:00:11.5000,69.9978668968981,7.51163743665244,22.0930512842719,0.12675222275739,4.27487164128476 +00:00:11.5014,69.9978618088205,7.52018814231447,22.118200418572,0.126782722050749,4.28141800297697 +00:00:11.5029,69.9978567128124,7.53454906311221,22.1604384209183,0.126887019423932,4.28796801862431 +00:00:11.5050,69.9978492131265,7.56965830992526,22.2637009115449,0.127217718629519,4.29759215471336 +00:00:11.5072,69.997841670151,7.62154290037761,22.4163026481694,0.127759172752122,4.30724940667105 +00:00:11.5093,69.997834068102,7.68910196147919,22.6150057690565,0.128495283331484,4.31695480817291 +00:00:11.5127,69.9978217255608,7.82528635946984,23.0155481160878,0.130014718451942,4.33264134026088 +00:00:11.5189,69.9977989308435,8.1373467734725,23.9333728631544,0.133531091296051,4.36134187860246 +00:00:11.5251,69.9977751558493,8.51544093524784,25.0454145154348,0.137762488323567,4.39088037726752 +00:00:11.5312,69.9977502583561,8.93098289873854,26.2675967609957,0.142327864071903,4.4213665302643 +00:00:11.5374,69.9977241690983,9.35654393309875,27.5192468620551,0.146889187406014,4.45283838920151 +00:00:11.5436,69.9976968930125,9.7672991255114,28.7273503691512,0.151166160610767,4.48526687647658 +00:00:11.5497,69.9976685008851,10.1421938889895,29.8299820264397,0.154942142381587,4.51856822238273 +00:00:11.5559,69.9976391168929,10.4649393857724,30.7792334875657,0.158065931801078,4.5526182783701 +00:00:11.5639,69.997599532014,10.7906366556605,31.7371666342956,0.161026367774766,4.59795922642307 +00:00:11.5743,69.9975470838952,11.0430415509377,32.4795339733462,0.162978950214937,4.65735501758057 +00:00:11.5847,69.9974938349375,11.1208152505052,32.7082801485449,0.163053698315086,4.71713098815655 +00:00:11.5951,69.9974405158101,11.0623892035856,32.5364388340754,0.161691164805782,4.7766908880996 +00:00:11.6055,69.9973876528111,10.9199924632248,32.1176248918377,0.159448918272521,4.8356108936487 +00:00:11.6159,69.9973355241326,10.7470785196487,31.6090544695551,0.156890552107803,4.89366909450593 +00:00:11.6263,69.9972841743668,10.5886677879911,31.1431405529149,0.154495332968806,4.95083285003672 +00:00:11.6367,69.9972334656612,10.4760900135374,30.8120294515805,0.152602202465081,5.00721861291597 +00:00:11.6471,69.9971831451399,10.4256796140614,30.6637635707688,0.1513896145444,5.06303775890156 +00:00:11.6606,69.9971175831885,10.4547418009743,30.7492405911008,0.15084195729933,5.13541062597381 +00:00:11.6742,69.9970515753259,10.5718193779704,31.0935864057953,0.151242144571814,5.20773724083651 +00:00:11.6878,69.9969843482717,10.7447644675993,31.6022484341155,0.152222357694499,5.28073561582042 +00:00:11.7014,69.9969159978862,10.9357888426724,32.1640848313895,0.153372896573615,5.35422632780402 +00:00:11.7150,69.9968465041013,11.1131273968771,32.6856688143444,0.154358486193722,5.42821650019728 +00:00:11.7287,69.9967760066566,11.2570049755413,33.1088381633568,0.154980629484796,5.50258670673055 +00:00:11.7458,69.9966864795406,11.3833949616038,33.4805734164817,0.155192776030997,5.59616029002453 +00:00:11.7677,69.9965705595755,11.4832469470265,33.7742557265484,0.154828790895923,5.71606467157376 +00:00:11.7896,69.9964537190003,11.5556166439805,33.9871077764133,0.154196086889408,5.83562123795814 +00:00:11.8115,69.9963360303617,11.6416580752745,34.2401708096309,0.153714072328641,5.95478099408659 +00:00:11.8334,69.9962172857651,11.7606020850112,34.5900061323858,0.15357005428637,6.07371025671486 +00:00:11.8616,69.9960626400799,11.9509781546332,35.1499357489212,0.153758249316517,6.22659663511245 +00:00:11.8897,69.995905475546,12.1537432276764,35.7463036108129,0.154061070456425,6.37969250300189 +00:00:11.9179,69.9957457928733,12.342930514815,36.3027368082795,0.154223989507102,6.53299220766267 +00:00:11.9461,69.9955837783046,12.5122550631685,36.8007501857898,0.154192756159997,6.68635424179324 +00:00:11.9937,69.9953047547607,12.7861990647449,37.6064678374849,0.154024394002926,6.94567900049066 +00:00:12.0000,69.9952678299201,12.8212447223911,37.7095433011502,0.15399575722371,6.97955951215221 +00:00:12.0024,69.9952531749904,12.8415080601312,37.769141353327,0.154044379049288,6.99297809456513 +00:00:12.0049,69.9952384893269,12.874242272485,37.8654184484854,0.154209744382136,7.00640632945886 +00:00:12.0079,69.9952206619333,12.9333295656334,38.0392046048042,0.154591340946448,7.02267791272677 +00:00:12.0109,69.9952027395558,13.0121573834468,38.2710511277847,0.15515530741729,7.03899910511111 +00:00:12.0151,69.9951771481435,13.1512474995822,38.6801397046536,0.156203871678852,7.06222991695302 +00:00:12.0233,69.995126674197,13.4822388445239,39.6536436603645,0.158775951354147,7.10775886734746 +00:00:12.0314,69.9950748633402,13.8625499192556,40.7722056448695,0.161750993519063,7.15408133350873 +00:00:12.0396,69.9950216152504,14.2503854331203,41.9128983327068,0.164739299159255,7.20125291765976 +00:00:12.0478,69.9949669639418,14.6104031976496,42.971774110734,0.167427813958076,7.24923585610626 +00:00:12.0560,69.9949110590275,14.9164931798827,43.8720387643609,0.169598833214373,7.29791598105691 +00:00:12.0663,69.994839430894,15.2014723056695,44.710212663734,0.17141730295772,7.35979133751595 +00:00:12.0798,69.994743695639,15.4056183466238,45.3106421959524,0.172299722281797,7.44182368766489 +00:00:12.0933,69.9946471719786,15.4471099599608,45.432676352826,0.171776419205878,7.52395651326822 +00:00:12.1069,69.9945506653005,15.3859734529888,45.2528630970258,0.170381916511433,7.60566126485096 +00:00:12.1204,69.9944546047049,15.2905066971735,44.9720785210985,0.168707220605938,7.68666186459543 +00:00:12.1339,69.9943590378803,15.2180112574617,44.7588566395933,0.167244417139058,7.76693386949441 +00:00:12.1474,69.9942637270441,15.2037182515321,44.7168183868591,0.166293735775948,7.84663947042856 +00:00:12.1610,69.9941682885962,15.2585975344084,44.8782280423775,0.1659436196389,7.92603436479162 +00:00:12.1801,69.9940324847185,15.4283397237621,45.3774697757709,0.166237057000028,8.03815832828782 +00:00:12.1992,69.9938949680725,15.6563008342865,46.0479436302545,0.167012850288901,8.15061184570178 +00:00:12.2183,69.9937554875549,15.8848948971049,46.720279109132,0.167777318733089,8.26354892374102 +00:00:12.2374,69.9936141830266,16.0758378614134,47.2818760629807,0.168215169624549,8.37687208559306 +00:00:12.2565,69.9934714012917,16.2193418209765,47.7039465322838,0.16825560570306,8.49035630336979 +00:00:12.2846,69.9932592130149,16.381314803354,48.1803376569235,0.167913943040162,8.65727729004908 +00:00:12.3128,69.9930448996941,16.5345974350501,48.631168926618,0.167510824146146,8.8238745385061 +00:00:12.3409,69.9928283497659,16.716801762848,49.1670640083766,0.167348646650729,8.99022297128488 +00:00:12.3690,69.9926092241513,16.9305275550293,49.795669279498,0.167439920944615,9.15653377067884 +00:00:12.4097,69.9922875337236,17.2512739266777,50.7390409608168,0.167659565886962,9.39709857103729 +00:00:12.4503,69.9919600330824,17.5556180975595,51.6341708751751,0.167744511838284,9.63783854492398 +00:00:12.5000,69.9915526435147,17.9036365017946,52.657754417043,0.167664735245643,9.93180160076879 +00:00:12.5679,69.9909814731363,18.3828348696275,54.0671613812574,0.167577807543427,10.3343395742439 +00:00:12.6359,69.9903949280456,18.8765600851065,55.5192943679603,0.167599690169032,10.7368334191572 +00:00:12.7359,69.9895041358768,19.6044657706497,57.6601934430873,0.167640205992478,11.3288140687872 +00:00:12.8359,69.9885798546099,20.3259547874979,59.782219963229,0.167630896450128,11.9208157324134 +00:00:12.9359,69.9876221479946,21.047227157514,61.9036092868059,0.167617783198727,12.5127938771503 +00:00:13.0000,69.986991653141,21.5106750928989,63.2666914497027,0.16762032273744,12.8916542919347 +00:00:13.0026,69.9869651042866,21.5195714203332,63.2928571186272,0.167551612615229,12.9074292586401 +00:00:13.0053,69.9869385583458,21.5079186920249,63.2585843883085,0.167347230880309,12.9231907540237 +00:00:13.0079,69.9869120416895,21.4725207766547,63.1544728725138,0.166986233886116,12.9389255100228 +00:00:13.0106,69.9868855818769,21.4151301643243,62.9856769538951,0.166480253674221,12.9546196653283 +00:00:13.0150,69.9868421551875,21.2824936789371,62.5955696439327,0.16539541113716,12.9803690347712 +00:00:13.0236,69.986758554596,20.9363638092996,61.5775406155871,0.162702367602383,13.0299326948113 +00:00:13.0321,69.9866764305649,20.5277760738321,60.3758119818592,0.159593014752672,13.0786287369121 +00:00:13.0407,69.9865958898545,20.1225408356238,59.1839436341876,0.156503600325505,13.1264026296988 +00:00:13.0492,69.9865168275156,19.771578810201,58.1517023829442,0.153777812069677,13.173307882526 +00:00:13.0578,69.9864389719891,19.5082801573537,57.3772945804521,0.151645542902645,13.2194843390704 +00:00:13.0686,69.9863415036661,19.3243171500262,56.8362269118417,0.149963414784583,13.2772265795931 +00:00:13.0826,69.9862168546395,19.3182585628718,56.8184075378582,0.149372058694405,13.3508713216932 +00:00:13.0965,69.9860916265913,19.5155922279394,57.39880067041,0.150156364806752,13.4245436122066 +00:00:13.1104,69.9859648158749,19.8295352734246,58.3221625688959,0.151710792956448,13.498756423904 +00:00:13.1243,69.9858359598935,20.1688582416018,59.320171298829,0.153411869766774,13.5737384071555 +00:00:13.1382,69.9857051098547,20.4610679373358,60.1796115803995,0.15477849049658,13.6494539551822 +00:00:13.1521,69.9855726753042,20.6659316804024,60.7821520011835,0.155554792449653,13.7256883082166 +00:00:13.1690,69.9854107951986,20.7930011544513,61.1558857483863,0.155693068959788,13.8184010609983 +00:00:13.1859,69.9852482642971,20.8238683692209,61.2466716741791,0.155204510690222,13.9110270886041 +00:00:13.2028,69.9850855967654,20.8151350051664,61.2209853093129,0.154464501594408,14.0033122322299 +00:00:13.2197,69.9849229087859,20.818806241549,61.2317830633794,0.153812432587782,14.095202397381 +00:00:13.2365,69.9847600033324,20.8659251185427,61.3703679957137,0.153447547043467,14.1867986623241 +00:00:13.2589,69.9845429504651,20.9999425606191,61.7645369429975,0.153428454558979,14.3081584364313 +00:00:13.2866,69.9842727331037,21.2260498218181,62.429558299465,0.153791247978335,14.4581238084234 +00:00:13.3142,69.9839996904317,21.4558626457738,63.1054783699231,0.154170090450791,14.6084058230197 +00:00:13.3418,69.9837240040615,21.6478850141695,63.670250041675,0.154304214003805,14.758911915818 +00:00:13.3755,69.9833849812959,21.8363128064441,64.2244494307181,0.1541800199737,14.9423829474162 +00:00:13.4166,69.9829677228015,22.0559508738173,64.8704437465215,0.153969812546064,15.1658474414384 +00:00:13.4577,69.982545966848,22.3004931276542,65.5896856695712,0.1539167970337,15.3891610023157 +00:00:13.5000,69.9821066001642,22.5748830583865,66.3967148776073,0.153999812732205,15.6191312634081 +00:00:13.5014,69.9820915217397,22.5794110423678,66.4100324775524,0.153973258522779,15.6269763570705 +00:00:13.5028,69.9820764440478,22.5722419608297,66.3889469436168,0.153875708880522,15.6348183637867 +00:00:13.5051,69.9820528506498,22.5294133168539,66.2629803436879,0.153531192553556,15.647085529971 +00:00:13.5074,69.982029322257,22.4483503244949,66.024559777926,0.152954636299786,15.6593158498752 +00:00:13.5096,69.9820058964498,22.3321718128989,65.6828582732321,0.152164607322336,15.6714919079981 +00:00:13.5131,69.9819697135077,22.0932318353878,64.9800936334935,0.150580213181689,15.6903018397826 +00:00:13.5197,69.9819036076553,21.5113818257183,63.2687700756421,0.146785163107023,15.7246935254445 +00:00:13.5262,69.9818394330191,20.8106954061069,61.2079276650202,0.142238904728367,15.7581262531679 +00:00:13.5328,69.9817774260281,20.0655025822523,59.0161840654479,0.137387159584728,15.7904832610153 +00:00:13.5394,69.98171763253,19.3389135000728,56.8791573531554,0.132619558422864,15.8217361981813 +00:00:13.5459,69.9816599284802,18.6800653532428,54.9413686860083,0.128250890883928,15.8519379678597 +00:00:13.5525,69.9816040605243,18.1237944399702,53.3052777646183,0.12451419442369,15.881205622497 +00:00:13.5604,69.9815379613122,17.6155248638187,51.8103672465255,0.121033197222158,15.9158456406276 +00:00:13.5705,69.9814567377984,17.2514302188277,50.7395006436109,0.118425545288619,15.9583937334199 +00:00:13.5805,69.9813765509646,17.1739652932316,50.5116626271517,0.117679654338243,16.0003427761785 +00:00:13.5906,69.9812962048499,17.3331511651796,50.9798563681752,0.118468439902405,16.0422840412531 +00:00:13.6006,69.9812147684129,17.6581411492342,51.9357092624534,0.120317328227131,16.084674944916 +00:00:13.6107,69.9811316521753,18.0703983425698,53.1482304193229,0.122704417297696,16.1277996492904 +00:00:13.6207,69.9810466173121,18.4959809810753,54.3999440619861,0.125149058848955,16.1717667465503 +00:00:13.6308,69.9809597329633,18.8751252761477,55.5150743416109,0.127274193581858,16.2165340945879 +00:00:13.6408,69.9808712980561,19.168105596844,56.3767811671882,0.128838470749383,16.2619503583451 +00:00:13.6509,69.9807817456512,19.3569936163406,56.9323341657075,0.129740474354405,16.3078030885747 +00:00:13.6652,69.9806527755592,19.4590715805198,57.2325634721171,0.129977172385456,16.3736340299465 +00:00:13.6796,69.9805235900419,19.4125156912249,57.0956343859556,0.129291951187732,16.4393664546943 +00:00:13.6940,69.9803949077094,19.2909978197921,56.7382288817414,0.1281473381451,16.5046613021815 +00:00:13.7083,69.9802669962335,19.1662806633993,56.3714137158804,0.126989484508332,16.5693947288081 +00:00:13.7227,69.9801397252921,19.0897485245919,56.1463191899762,0.12613645539984,16.6336315161766 +00:00:13.7371,69.9800127181081,19.084592736833,56.1311551083322,0.125729912112404,16.6975523625523 +00:00:13.7575,69.9798320083963,19.1843024970022,56.4244191088301,0.125816497371707,16.7881597626248 +00:00:13.7778,69.9796500650418,19.3569471400859,56.9321974708408,0.126348567149699,16.8789649159471 +00:00:13.7982,69.9794665242326,19.5372750072889,57.4625735508498,0.126920710049453,16.9701352487912 +00:00:13.8186,69.9792815002372,19.6799236782505,57.8821284654427,0.127257239206743,17.0616137733512 +00:00:13.8390,69.9790953699225,19.7725369911595,58.1545205622337,0.127287581597106,17.1532229834308 +00:00:13.8693,69.9788177228963,19.8595342280435,58.4103947883632,0.127028728634688,17.2891337520067 +00:00:13.8995,69.9785388069567,19.9412473356005,58.6507274576486,0.126742189020774,17.424793323067 +00:00:13.9298,69.9782584614116,20.0554413150263,58.9865921030184,0.126653017602772,17.5602778074248 +00:00:13.9669,69.9779121801928,20.2322012438402,59.5064742465887,0.126762066673686,17.7264314270138 +00:00:14.0000,69.97760178959,20.3954639130444,59.9866585677776,0.126892934112284,17.8742585557776 +00:00:14.0011,69.9775912954496,20.3967422372427,59.9904183448315,0.126872486175231,17.8792385531751 +00:00:14.0022,69.9775808030519,20.3881347338017,59.9651021582404,0.126793925297393,17.8842166722982 +00:00:14.0037,69.9775664878406,20.3536688867924,59.8637320199777,0.126553144819868,17.8910071686094 +00:00:14.0052,69.977552206771,20.2913750421938,59.6805148299817,0.126148715705356,17.8977803062743 +00:00:14.0067,69.9775379788638,20.201898675944,59.417349046894,0.125584196570027,17.9045275454126 +00:00:14.0088,69.9775185057868,20.0383334559075,58.936274870316,0.124568445832426,17.9137619498706 +00:00:14.0135,69.9774758424727,19.5364043587273,57.4600128197862,0.121486459971772,17.9339972155067 +00:00:14.0194,69.9774235726209,18.6902087815092,54.9712022985564,0.116304706168567,17.958801053439 +00:00:14.0253,69.9773737984367,17.6950043929064,52.0441305673717,0.110176894597346,17.9824345627694 +00:00:14.0312,69.9773268046847,16.6389824255406,48.9381836045311,0.103610026855655,18.0047546146072 +00:00:14.0371,69.9772826637163,15.5967440120587,45.8727765060551,0.0970507551823124,18.0257130086951 +00:00:14.0430,69.9772412636314,14.6273101789956,43.0215005264577,0.0908714551659595,18.0453475731733 +00:00:14.0490,69.9772023503193,13.7740997267398,40.512058019823,0.0853638191803039,18.0637662103573 +00:00:14.0549,69.9771655697591,13.0658630516307,38.4290089753844,0.0807364104578427,18.0811293924898 +00:00:14.0608,69.9771305065561,12.5182082442565,36.8182595419308,0.0771161463453654,18.0976327737508 +00:00:14.0682,69.9770884404239,12.065025452398,35.4853689776411,0.0740770762902667,18.1173702036944 +00:00:14.0755,69.9770475122921,11.8541761058407,34.865223840708,0.0726188306924481,18.1365204244436 +00:00:14.0829,69.9770069496424,11.8585097862287,34.8779699594962,0.0725739243770612,18.1554686309477 +00:00:14.0903,69.9769660846757,12.0396466237738,35.4107253640406,0.0736869304234574,18.1745485683033 +00:00:14.0977,69.976924391118,12.3523341589001,36.3303945850002,0.075650477452468,18.194021570545 +00:00:14.1051,69.9768815009993,12.7487516602707,37.4963284125608,0.0781409329964543,18.214067311645 +00:00:14.1124,69.9768372065818,13.1824351342819,38.7718680420057,0.0808491664008495,18.2347835444722 +00:00:14.1198,69.9767914499533,13.6116495509106,40.0342633850313,0.0835043344050634,18.2561928813574 +00:00:14.1272,69.9767443025243,14.0020305860629,41.1824429001851,0.0858899526854245,18.2782547094285 +00:00:14.1346,69.9766959371415,14.3283258838843,42.1421349526009,0.0878523468397642,18.3008802904725 +00:00:14.1438,69.976633995071,14.6240166613846,43.0118137099549,0.0895826218502745,18.3298370264569 +00:00:14.1559,69.9765518271776,14.8162763310753,43.5772833266919,0.0906150208913983,18.3682001958685 +00:00:14.1680,69.97646910638,14.8166010226012,43.5782383017682,0.0904461862222879,18.4067552124294 +00:00:14.1800,69.9763867252555,14.681076634323,43.1796371597736,0.0894323889648777,18.4450765245182 +00:00:14.1921,69.9763052482494,14.478622766479,42.5841846072911,0.0880037984651962,18.482896313242 +00:00:14.2042,69.976224876997,14.2735836836118,41.9811284812111,0.086561517016754,18.5201197216643 +00:00:14.2163,69.9761455048398,14.1135774308651,41.5105218554857,0.0854035374752632,18.5567988381742 +00:00:14.2283,69.9760668211983,14.0242630246035,41.2478324253044,0.0846908411480955,18.5930831126148 +00:00:14.2433,69.9759697254421,14.0149270271486,41.2203736092607,0.0844447638829964,18.6377626552412 +00:00:14.2582,69.9758724102868,14.0932199447065,41.4506468961955,0.0847466126833463,18.6824475638381 +00:00:14.2732,69.975774421083,14.2189583429063,41.8204657144304,0.0853414055719049,18.7273537077414 +00:00:14.2881,69.9756755701545,14.3506063766205,42.2076658135897,0.0859684974619721,18.7725685622468 +00:00:14.3031,69.9755759129291,14.4572558933275,42.5213408627281,0.0864366415299512,18.8180639318048 +00:00:14.3180,69.9754756598659,14.5244144663516,42.7188660775047,0.0866582802440833,18.8637388912518 +00:00:14.3407,69.9753232206619,14.5617508749058,42.8286790438406,0.0865959951701743,18.9330034740266 +00:00:14.3633,69.9751705698074,14.5575082447882,42.8162007199653,0.0862794828860703,19.0021347787601 +00:00:14.3860,69.9750179070355,14.5545088454543,42.8073789572187,0.0859730639917953,19.0710403885247 +00:00:14.4086,69.9748651082699,14.5785382163776,42.8780535775812,0.0858339464241045,19.1397797032363 +00:00:14.4370,69.9746731708161,14.6463941076742,43.0776297284537,0.0858907958917193,19.2258136292824 +00:00:14.4654,69.9744802650167,14.7316799732374,43.3284705095219,0.086052468910705,19.3119394529626 +00:00:14.4937,69.974286329201,14.8090256681414,43.5559578474748,0.0861644394428566,19.3981847893981 +00:00:14.5000,69.9742436689886,14.8237663974333,43.5993129336275,0.0861754212874386,19.4171108797526 +00:00:14.5006,69.9742388911659,14.8237256226761,43.599193007871,0.0861664460310885,19.4192295241969 +00:00:14.5013,69.9742341140916,14.8196580945904,43.5872296899717,0.0861331769240738,19.4213476092968 +00:00:14.5025,69.9742265121928,14.799791957095,43.5287998738088,0.0859994195638449,19.4247176247414 +00:00:14.5036,69.9742189254859,14.7612622224982,43.4154771249946,0.0857530216042638,19.4280801030622 +00:00:14.5047,69.9742113635985,14.7030621917433,43.2443005639509,0.0853877834735933,19.4314306091303 +00:00:14.5058,69.9742038364437,14.6256561552125,43.0166357506249,0.0849062956364919,19.4347645697625 +00:00:14.5075,69.9741922916185,14.4709648279213,42.5616612585921,0.0839492229099752,19.4398752671339 +00:00:14.5111,69.9741683891722,14.0227456038037,41.2433694229522,0.0811837650934656,19.4504417164131 +00:00:14.5159,69.9741382366084,13.2263877818969,38.9011405349909,0.0762552036450041,19.4637295317458 +00:00:14.5207,69.9741100234494,12.2598881858043,36.0584946641302,0.0702211307678143,19.4760965724499 +00:00:14.5247,69.9740883490023,11.3775769339499,33.4634615704408,0.064652143512178,19.4855295264899 +00:00:14.5286,69.9740683182362,10.4612946028149,30.7685135376908,0.058801551727066,19.4941662514618 +00:00:14.5326,69.9740499679691,9.5416367002781,28.0636373537591,0.0528560067326512,19.5019792678927 +00:00:14.5365,69.9740332811519,8.64440522513457,25.4247212503958,0.0469805570785482,19.5089667325299 +00:00:14.5405,69.9740181973529,7.79098775849201,22.9146698779177,0.0413198521281822,19.5151485023059 +00:00:14.5445,69.9740046209385,6.99855295023932,20.5839792654098,0.0359976533819354,19.5205631120113 +00:00:14.5487,69.9739915354052,6.22850017672954,18.3191181668516,0.0307621588968811,19.5256024541203 +00:00:14.5530,69.9739798737372,5.55586781436162,16.3407876892989,0.0261355546568878,19.5298995944471 +00:00:14.5573,69.9739694373238,4.98779922057625,14.6699977075772,0.0221878198253859,19.5335511131049 +00:00:14.5615,69.9739600168687,4.52755781106019,13.3163465031182,0.0189613181398162,19.5366622048429 +00:00:14.5658,69.9739513998674,4.17502911500846,12.2794973970837,0.0164722442754382,19.539342509185 +00:00:14.5701,69.9739433767908,3.92725264372501,11.5507430697794,0.0147130268539064,19.5417023417491 +00:00:14.5744,69.9739357462167,3.77891607252182,11.1144590368289,0.013655215427212,19.5438493383872 +00:00:14.5786,69.973928319042,3.72279780440298,10.9494053070676,0.0132526544155298,19.5458855526981 +00:00:14.5829,69.9739209218711,3.75016135962447,11.0298863518367,0.0134448198376876,19.547905040752 +00:00:14.5872,69.973913399664,3.85111124255188,11.3267977722114,0.0141602089116165,19.5499919506713 +00:00:14.5914,69.9739056177069,4.01492021968664,11.8085888814313,0.0153196795698065,19.5522191179776 +00:00:14.5957,69.9738974629544,4.23033692368303,12.4421674225972,0.016839647342711,19.5546471524924 +00:00:14.6000,69.973888844777,4.48587984116528,13.1937642387214,0.0186350606247247,19.557323989551 +00:00:14.6042,69.9738796951372,4.77012023587112,14.0297653996209,0.020622090436695,19.560284867506 +00:00:14.6085,69.9738699682195,5.07195296566988,14.9175087225585,0.0227204863247552,19.5635526850334 +00:00:14.6128,69.9738596395426,5.38085106457908,15.8260325428797,0.024855565313155,19.5671386856132 +00:00:14.6180,69.9738462151988,5.75250981801239,16.9191465235659,0.027407618683267,19.5719451938088 +00:00:14.6232,69.9738319206726,6.10501754661314,17.9559339606269,0.0298109058209272,19.5772059504498 +00:00:14.6284,69.9738168170965,6.42557705854091,18.8987560545321,0.0319812030613211,19.5828861466847 +00:00:14.6348,69.973797360541,6.75969682737168,19.8814612569755,0.0342265063051354,19.5903360838164 +00:00:14.6412,69.9737770294074,7.01973241955335,20.6462718222157,0.0359596146971884,19.5982329030863 +00:00:14.6494,69.9737497916628,7.23893154915788,21.290975144582,0.0374044057657901,19.6089176909473 +00:00:14.6577,69.9737219593221,7.32986835041638,21.5584363247541,0.0379862023936313,19.6198991846889 +00:00:14.6660,69.9736939860085,7.30817642607567,21.4946365472814,0.03781486421276,19.6309450587585 +00:00:14.6742,69.9736662538019,7.19837084929613,21.171678968518,0.0370550342362865,19.6418603615023 +00:00:14.6825,69.973639043858,7.02956377841029,20.6751875835597,0.0358998634880138,19.652501602236 +00:00:14.6908,69.9736125261356,6.83132153346297,20.092122157244,0.0345455662936549,19.662781652035 +00:00:14.6990,69.9735867637904,6.63033904368745,19.500997187316,0.033170476271319,19.6726676534585 +00:00:14.7073,69.9735617281738,6.4481837254466,18.9652462513135,0.0319201179792435,19.6821737385381 +00:00:14.7156,69.973537320387,6.30011057863341,18.5297369959806,0.0308986399909993,19.6913503494316 +00:00:14.7238,69.9735133956336,6.19480915357247,18.220026922272,0.0301662091052155,19.7002719231561 +00:00:14.7351,69.973481098804,6.12294593504195,18.0086645148293,0.0296538416843948,19.7122424109247 +00:00:14.7464,69.9734489873783,6.12551579238541,18.0162229187806,0.0296468701338636,19.7241071404824 +00:00:14.7578,69.9734167274828,6.18418909806503,18.1887914648971,0.030019995354659,19.7360388071128 +00:00:14.7691,69.9733840880329,6.27544709196743,18.457197329316,0.0306123411625202,19.7481565143959 +00:00:14.7804,69.9733509585778,6.37570939901973,18.7520864677051,0.0312634203920966,19.7605166240859 +00:00:14.7917,69.9733173399017,6.4655018988676,19.0161820554929,0.0318417413307126,19.7731179651876 +00:00:14.8030,69.9732833167541,6.53196523306986,19.2116624502055,0.0322613757850771,19.7859162759297 +00:00:14.8168,69.9732415872613,6.57422246575372,19.3359484286874,0.0325112634382285,19.8016446724018 +00:00:14.8338,69.9731897128683,6.5756502078506,19.3401476701488,0.0324785427375847,19.8211960112783 +00:00:14.8509,69.9731379529446,6.54083017853329,19.2377358192156,0.0322030279635683,19.8406634821315 +00:00:14.8679,69.973086486441,6.49564162544289,19.1048283101261,0.0318586551632703,19.8599557681577 +00:00:14.8850,69.9730353183251,6.4612099673588,19.0035587275259,0.0315870972316333,19.8790707078216 +00:00:14.9021,69.9729843315874,6.44822328576423,18.9653626051889,0.0314598053806943,19.898068489646 +00:00:14.9241,69.9729183608684,6.46072861875761,19.0021429963459,0.0314916575311579,19.9226140463994 +00:00:14.9462,69.9728521876306,6.49123436556987,19.0918657810879,0.0316436219002464,19.9472223868682 +00:00:14.9683,69.9727857232939,6.52172211618689,19.1815356358438,0.031794841385723,19.9719384016001 +00:00:14.9903,69.9727190169214,6.54076749920446,19.2375514682484,0.0318692334017595,19.9967367587686 +00:00:15.0000,69.9726898406632,6.54451112433533,19.248562130398,0.0318711709314644,20.0075779887681 +00:00:15.0006,69.9726880121621,6.54406633832918,19.2472539362623,0.0318667666903201,20.0082572415694 +00:00:15.0012,69.9726861840726,6.54214244033697,19.2415954127558,0.0318525098743819,20.0089362543642 +00:00:15.0021,69.9726833561042,6.53434674112995,19.2186668856763,0.0317983491025649,20.0099862824278 +00:00:15.0030,69.9726805330622,6.51971901130777,19.1756441509052,0.0316986687760447,20.011033733363 +00:00:15.0040,69.9726777179552,6.49768936769996,19.1108510814705,0.0315496472525368,20.012077077634 +00:00:15.0049,69.9726749139632,6.4682513701906,19.0242687358547,0.0313511989115012,20.0131146973947 +00:00:15.0062,69.97267093062,6.41388079293658,18.8643552733429,0.0309854049682029,20.014584962638 +00:00:15.0085,69.9726641935414,6.28977514330987,18.4993386567937,0.0301512362024723,20.0170577009468 +00:00:15.0124,69.9726532038817,6.00451879690922,17.6603494026742,0.0282316039125399,20.021036381045 +00:00:15.0163,69.9726427944144,5.63970409575549,16.5873649875161,0.0257671898303411,20.0247164711755 +00:00:15.0201,69.9726330866673,5.21531966784157,15.3391754936517,0.0228844149089535,20.0280337534929 +00:00:15.0240,69.9726241713042,4.75025588643992,13.9713408424703,0.0197039957560034,20.0309388934277 +00:00:15.0279,69.972616106617,4.2618127956338,12.53474351657,0.0163384465613501,20.0333984762779 +00:00:15.0310,69.9726101378881,3.85332943897752,11.3333218793457,0.0135032171852238,20.0350727246979 +00:00:15.0342,69.9726047674256,3.44745159523775,10.1395635154051,0.010666851170947,20.0364291391025 +00:00:15.0374,69.972599986443,3.05103856191154,8.9736428291516,0.00787761208392854,20.0374702535554 +00:00:15.0406,69.9725957766386,2.67001353143379,7.85298097480525,0.0051784632642124,20.0382037908818 +00:00:15.0437,69.9725921117083,2.3094207054881,6.79241383967088,0.00260722466641679,20.0386419701867 +00:00:15.0469,69.9725889586096,1.97343953142803,5.8042339159648,0.000196400634290112,20.0388009280776 +00:00:15.0495,69.9725867640567,1.72246993510701,5.06608804443237,-0.00161411759039461,20.0387376800246 +00:00:15.0520,69.9725848555164,1.49114756565056,4.38572813426636,-0.003290376165599,20.0385167069642 +00:00:15.0546,69.9725832090164,1.28051921281097,3.76623297885579,-0.00482301541362622,20.0381506047153 +00:00:15.0572,69.9725817996427,1.09131401936363,3.20974711577539,-0.00620499552468061,20.0376526543005 +00:00:15.0597,69.9725806017639,0.923980610332922,2.71759003039095,-0.00743139814026986,20.0370366861454 +00:00:15.0618,69.9725797733172,0.805075358407364,2.36786870119813,-0.00830527511674156,20.0364627685233 +00:00:15.0639,69.9725790517734,0.700532242367549,2.06038894813985,-0.00907526728352102,20.0358288593632 +00:00:15.0659,69.9725784234089,0.610236842973208,1.79481424403885,-0.00974158339305887,20.0351425533776 +00:00:15.0676,69.9725779851436,0.548911128505375,1.61444449560405,-0.0101947920384842,20.0345683937811 +00:00:15.0692,69.9725775899271,0.496206510945723,1.45943091454625,-0.0105847192867792,20.0339699534934 +00:00:15.0708,69.9725772312981,0.45195642241221,1.32928359533003,-0.0109123995916518,20.033350856011 +00:00:15.0725,69.9725769029699,0.415967439820703,1.22343364653148,-0.011179100942871,20.0327146368725 +00:00:15.0741,69.9725765987998,0.388021097260397,1.14123852135411,-0.0113863105210275,20.0320647584096 +00:00:15.0757,69.9725763128095,0.367875775032075,1.08198757362375,-0.0115357192180917,20.0314045966844 +00:00:15.0774,69.9725760392074,0.355268633696394,1.04490774616586,-0.0116292053398364,20.0307374270028 +00:00:15.0790,69.9725757724069,0.34991754929052,1.02916926261918,-0.0116688178953291,20.0300664120757 +00:00:15.0811,69.9725754311222,0.353140733747975,1.03864921690581,-0.0116447061167402,20.0292060654939 +00:00:15.0832,69.9725750815431,0.367114834455062,1.07974951310312,-0.0115407482115911,20.028350430754 +00:00:15.0857,69.9725746276489,0.397681308627299,1.16965090772735,-0.0113136041569569,20.0273201649207 +00:00:15.0883,69.9725741296577,0.441907979025618,1.29972935007535,-0.0109852627737714,20.0263148805649 +00:00:15.0908,69.9725735722996,0.498417252534405,1.46593309568943,-0.0105661822248217,20.0253431950415 +00:00:15.0934,69.9725729418495,0.565790575985375,1.66408992936875,-0.0100671514079349,20.0244128291096 +00:00:15.0959,69.972572226281,0.642590868939554,1.88997314393986,-0.0094990981458488,20.0235305183982 +00:00:15.0985,69.9725714152851,0.727377597466384,2.13934587490113,-0.00887295550000061,20.0227020036976 +00:00:15.1011,69.9725705002568,0.818720213775285,2.40800062875084,-0.00819954420421365,20.0219320410402 +00:00:15.1043,69.9725691998984,0.939743267731868,2.76395078744667,-0.0073091391807693,20.0210583269973 +00:00:15.1074,69.9725677170113,1.06615314173124,3.13574453450366,-0.00638130918042754,20.020286926303 +00:00:15.1106,69.9725660455618,1.19542666496087,3.51596077929669,-0.00543478377769467,20.0196209701756 +00:00:15.1138,69.9725641830333,1.32517099113755,3.89756173863985,-0.00448716499308937,20.0190616051415 +00:00:15.1178,69.9725615987805,1.4838363192811,4.36422446847384,-0.00333150853314905,20.0185123622648 +00:00:15.1218,69.9725587290572,1.63604564608651,4.81189895907797,-0.00222617020739317,20.0181215030391 +00:00:15.1258,69.9725555886591,1.77853435612884,5.23098340037896,-0.00119434431394831,20.0178803913189 +00:00:15.1307,69.9725513131321,1.9387845236924,5.70230742262471,-3.72819859586958e-05,20.0177698283366 +00:00:15.1357,69.9725466962639,2.07573059819159,6.10508999468113,0.000948651862193305,20.017847043067 +00:00:15.1420,69.9725404291601,2.21222983704038,6.5065583442364,0.00192867069775339,20.0181622103087 +00:00:15.1484,69.9725338266962,2.30515553535076,6.77986922161989,0.00259416876825678,20.0186609117776 +00:00:15.1547,69.9725270137284,2.35540194634241,6.92765278336003,0.00295322095927704,20.0192745619198 +00:00:15.1610,69.9725201096705,2.36642872917911,6.96008449758562,0.00303149667869642,20.0199378241625 +00:00:15.1673,69.9725132210585,2.34369656247794,6.89322518375865,0.0028683122993094,20.0205925262109 +00:00:15.1737,69.9725064366085,2.29399252758324,6.74703684583306,0.00251203158117372,20.0211902351388 +00:00:15.1800,69.9724998243293,2.22476416717972,6.54342402111681,0.00201556830623791,20.021693763238 +00:00:15.1863,69.9724934304648,2.14352042069881,6.30447182558472,0.00143232854336879,20.0220777294138 +00:00:15.1926,69.9724872800248,2.05733137504431,6.05097463248325,0.000812775143028218,20.0223282948232 +00:00:15.1990,69.9724813786035,1.97244369600758,5.80130498825759,0.000201722710165176,20.0224422175269 +00:00:15.2053,69.9724757151456,1.89401664133494,5.57063718039688,-0.000363586709695807,20.0224253913126 +00:00:15.2116,69.9724702653185,1.82597397967084,5.37051170491423,-0.00085463056757249,20.0222910409789 +00:00:15.2179,69.9724649951704,1.7709599659984,5.20870578234824,-0.00125202574170088,20.0220577411502 +00:00:15.2263,69.9724582063956,1.72031800797034,5.05975884697158,-0.00161807010149438,20.02163749592 +00:00:15.2347,69.9724515652995,1.69486353889381,4.98489276145238,-0.00180199947969305,20.0211358459601 +00:00:15.2431,69.9724449800388,1.69229320930611,4.97733296854739,-0.0018202549221049,20.0206034714892 +00:00:15.2515,69.9724383703454,1.70842082613706,5.02476713569724,-0.00170313458646104,20.0200846949005 +00:00:15.2599,69.9724316740948,1.73792623068139,5.11154773729819,-0.00148926819201308,20.0196138072404 +00:00:15.2683,69.9724248503184,1.77512737923861,5.22096288011355,-0.00121991024600053,20.0192133861385 +00:00:15.2767,69.9724178793382,1.81464827862594,5.33720081948807,-0.000934026134830057,20.0188942290461 +00:00:15.2850,69.9724107606417,1.85192505969453,5.44683841086627,-0.000664607221762647,20.0186565500226 +00:00:15.2934,69.9724035091613,1.88352850231064,5.53978971267836,-0.000436362089484553,20.0184920571768 +00:00:15.3039,69.9723943149718,1.9118077538155,5.6229639818103,-0.000232251164236458,20.0183652594127 +00:00:15.3174,69.9723823708995,1.92894165041102,5.67335779532654,-0.000108626934040835,20.0182774276967 +00:00:15.3308,69.97237037707,1.92724262013628,5.66836064745965,-0.000120832210629723,20.0182170031652 +00:00:15.3442,69.9723584295205,1.91263868804033,5.62540790600098,-0.000226083835804802,20.0181311472625 +00:00:15.3577,69.9723465855475,1.89243878479451,5.5659964258662,-0.000371696991493739,20.0179883397692 +00:00:15.3711,69.9723348603424,1.87327030265026,5.50961853720663,-0.000509874601572795,20.0177802233289 +00:00:15.3846,69.9723232349439,1.85967707465809,5.46963845487673,-0.000607810343445473,20.0175172389565 +00:00:15.3980,69.9723116702715,1.85360065129248,5.45176662144848,-0.000651468728959081,20.0172209102411 +00:00:15.4177,69.9722947756088,1.85633193182274,5.45979979947863,-0.000631429005784688,20.0167819797329 +00:00:15.4374,69.9722778238834,1.86726881270557,5.49196709619286,-0.000552170276007368,20.0163746879966 +00:00:15.4570,69.9722607742578,1.87939883903021,5.52764364420651,-0.000464352559051766,20.0160214987909 +00:00:15.4767,69.9722436363023,1.88765497472391,5.5519263962468,-0.000404543240802975,20.0157171118752 +00:00:15.4963,69.9722264492874,1.89034399700965,5.55983528532251,-0.000384933742035272,20.0154398846244 +00:00:15.5000,69.9722232889338,1.89021473619592,5.5594551064586,-0.000385830426102993,20.0153909008117 +00:00:15.5133,69.9722115674293,1.8887615075777,5.5551809046403,-0.000396181297775081,20.0152057641893 +00:00:15.5403,69.9721880671876,1.88480027040751,5.54353020708092,-0.00042448205069322,20.0148150805601 +00:00:15.5672,69.9721646014624,1.88260814436981,5.53708277755827,-0.000440002978647973,20.0144056728818 +00:00:15.5941,69.9721411391142,1.88390328861139,5.54089202532761,-0.000430353019944925,20.0139946913701 +00:00:15.6363,69.9721042091148,1.88903981104798,5.55599944425877,-0.000392831281575628,20.0133843715666 +00:00:15.6786,69.9720671961449,1.89339956220472,5.56882224177857,-0.000360950897799199,20.0128203755333 +00:00:15.7209,69.9720301272502,1.89515607997832,5.57398847052448,-0.000347881163472359,20.0122877740979 +00:00:15.7861,69.9719728838426,1.89673013477157,5.57861804344579,-0.000335937077720427,20.0114970350433 +00:00:15.8513,69.9719155663498,1.89941272600651,5.58650801766619,-0.000316023573391276,20.0107483916892 +00:00:15.9337,69.971843051565,1.90350323533081,5.59853892744355,-0.000285857045305178,20.0098751921113 +00:00:16.0000,69.9717846357654,1.90620516843258,5.60648578950759,-0.000265879057259789,20.0092287184801 +00:00:16.1000,69.971696314632,1.90946713758371,5.61607981642269,-0.000241671875600333,20.0083299238994 +00:00:16.2000,69.9716078418925,1.91258149410029,5.62523968853028,-0.000218593142354843,20.0075168331528 +00:00:16.3000,69.9715192280759,1.91554416572727,5.63395342860961,-0.000196667976767639,20.0067834356615 +00:00:16.4000,69.9714304865324,1.91814872683403,5.64161390245304,-0.000177380414898389,20.0061221839865 +00:00:16.5000,69.9713416311239,1.92045666580382,5.64840195824652,-0.000160281000866902,20.0055252688686 +00:00:16.6000,69.9712526730105,1.92256428370178,5.65460083441699,-0.000144670215875116,20.0049863860765 +00:00:16.7000,69.9711636217775,1.92447781868532,5.66022887848622,-0.000130499053403695,20.004500113918 +00:00:16.8000,69.9710744865248,1.92619611340297,5.66528268647933,-0.000117772059478401,20.0040613118348 +00:00:16.9000,69.9709852755808,1.92774387092131,5.66983491447445,-0.000106307503019015,20.0036652766625 +00:00:17.0000,69.9708959963117,1.92914360605527,5.6739517825155,-9.59398420424209e-05,20.003307846597 +00:00:17.1000,69.9708066553396,1.93040755110375,5.67766926795221,-8.65780341619928e-05,20.0029852796901 +00:00:17.2000,69.9707172586897,1.93154726770916,5.68102137561517,-7.81361237429074e-05,20.0026941719225 +00:00:17.3000,69.970627811804,1.93257568484262,5.68404613189007,-7.05185329597085e-05,20.0024314487788 +00:00:17.4000,69.9705383195783,1.93350412428279,5.68677683612584,-6.36415084437118e-05,20.002194344173 +00:00:17.5000,69.9704487864305,1.9343420473797,5.68924131582265,-5.74349198983576e-05,20.0019803618866 +00:00:17.6000,69.9703592163526,1.93509815644721,5.69146516602122,-5.18342921759387e-05,20.0017872464122 +00:00:17.7000,69.970269612947,1.93578052990695,5.69347214678514,-4.67798152306389e-05,20.0016129623464 +00:00:17.8000,69.9701799794634,1.93639639054043,5.6952835015895,-4.22180008904316e-05,20.0014556736057 +00:00:17.9000,69.9700903188346,1.93695219123149,5.6969182095044,-3.81010491802119e-05,20.0013137230428 +00:00:18.0000,69.970000633708,1.93745378154495,5.69839347513221,-3.43856334836873e-05,20.0011856148535 +00:00:18.1000,69.9699109264726,1.93790645916382,5.69972487989359,-3.10325180180356e-05,20.0010699991507 +00:00:18.2000,69.9698211992843,1.93831499560447,5.70092645766021,-2.80063617631238e-05,20.000965657758 +00:00:18.3000,69.9697314540889,1.93868369191549,5.70201085857498,-2.52753069866248e-05,20.0008714912674 +00:00:18.4000,69.9696416926425,1.93901643304661,5.70298950896063,-2.28105783649247e-05,20.0007865074582 +00:00:18.5000,69.9695519165298,1.93931672643949,5.70387272482201,-2.05861967925433e-05,20.0007098108752 +00:00:18.6000,69.9694621271809,1.93958773633329,5.70466981274496,-1.85787248317021e-05,20.0006405933898 +00:00:18.7000,69.9693723258867,1.93983231804552,5.70538917072213,-1.67670130162016e-05,20.0005781256755 +00:00:18.8000,69.969282513812,1.94005304882584,5.70603837889952,-1.51319715033944e-05,20.0005217495245 +00:00:18.9000,69.9691926920082,1.94025225466926,5.706624278439,-1.36563714350075e-05,20.0004708709157 +00:00:19.0000,69.9691028614238,1.94043203461481,5.70715304298472,-1.23246649396365e-05,20.0004249537543 +00:00:19.1000,69.9690130229153,1.9405942829887,5.7076302440844,-1.11228204188213e-05,20.000383514223 +00:00:19.2000,69.9689231772553,1.94074070942608,5.70806091007671,-1.00381742719485e-05,20.0003461156837 +00:00:19.3000,69.9688333251413,1.94087285684243,5.70844957894833,-9.05929778428826e-06,20.0003123640775 +00:00:19.4000,69.9687434672026,1.94099211767753,5.70880034611039,-8.17587681297829e-06,20.0002819037725 +00:00:19.5000,69.9686536040071,1.94109974858461,5.70911690760179,-7.3786029934398e-06,20.0002544138159 +00:00:19.6000,69.9685637360677,1.94119688367489,5.7094025990438,-6.65907564167371e-06,20.0002296045533 +00:00:19.7000,69.9684738638467,1.94128454646273,5.70966043077275,-6.00971327856806e-06,20.0002072145755 +00:00:19.8000,69.9683839877618,1.94136366065188,5.70989311956434,-5.42367373800106e-06,20.0001870079652 +00:00:19.9000,69.9682941081898,1.94143505986857,5.7101031172605,-4.89478207469951e-06,20.0001687718104 +00:00:20.0000,69.9682042254707,1.9414994964475,5.71029263661028,-4.41746548780981e-06,20.0001523139614 +00:00:20.1000,69.9681143399115,1.94155764935739,5.71046367458057,-3.9866946152559e-06,20.0001374610059 +00:00:20.2000,69.968024451789,1.94161013135677,5.71061803340227,-3.5979305315391e-06,20.0001240564422 +00:00:20.3000,69.9679345613533,1.94165749544938,5.71075733955701,-3.24707693115508e-06,20.0001119590298 +00:00:20.4000,69.9678446688299,1.94170024071307,5.71088306092079,-2.93043695410747e-06,20.0001010413013 +00:00:20.5000,69.9677547744223,1.94173882061237,5.71099653121286,-2.64467425486578e-06,20.0000911882193 +00:00:20.6000,69.9676648783143,1.94177363522143,5.71109892712187,-2.38677782759549e-06,20.0000822959645 +00:00:20.7000,69.9675749806718,1.9418050547783,5.71119133758325,-2.15403025054252e-06,20.0000742708413 +00:00:20.8000,69.9674850816443,1.94183341034911,5.71127473632092,-1.94397914331668e-06,20.0000670282912 +00:00:20.9000,69.9673951813671,1.94185900072039,5.7113500021188,-1.7544112617348e-06,20.0000604920012 +00:00:21.0000,69.9673052799619,1.9418820955442,5.71141792807117,-1.58332916150892e-06,20.0000545931001 +00:00:21.1000,69.9672153775387,1.94190293817484,5.71147922992601,-1.42893019821002e-06,20.0000492694326 +00:00:21.2000,69.9671254741969,1.94192174823608,5.71153455363554,-1.28958751246116e-06,20.0000444649046 +00:00:21.3000,69.967035570026,1.94193872393584,5.71158448216424,-1.16383288067109e-06,20.0000401288921 +00:00:21.4000,69.9669456651068,1.94195404415216,5.71162954162399,-1.05034126413396e-06,20.0000362157075 +00:00:21.5000,69.9668557595123,1.94196787032132,5.71167020682742,-9.47916824807054e-07,20.0000326841186 +00:00:21.6000,69.9667658533085,1.9419803481358,5.71170690628176,-8.55480345107034e-07,20.000029496914 +00:00:21.7000,69.9666759465546,1.94199160908142,5.71174002671005,-7.72057843996421e-07,20.000026620511 +00:00:21.8000,69.9665860393044,1.94200177182155,5.7117699171222,-6.96770321785251e-07,20.0000240246014 +00:00:21.9000,69.9664961316063,1.9420109434487,5.71179689249619,-6.288244903635e-07,20.000021681833 +00:00:22.0000,69.9664062235039,1.94201922061137,5.71182123709227,-5.6750442501686e-07,20.0000195675206 +00:00:22.1000,69.9663163150367,1.94202669053407,5.71184320745314,-5.12164009737425e-07,20.0000176593862 +00:00:22.2000,69.9662264062402,1.94203343193537,5.71186303510403,-4.62220135673473e-07,20.0000159373243 +00:00:22.3000,69.9661364971466,1.94203951585728,5.711880928992,-4.17146558382486e-07,20.0000143831899 +00:00:22.4000,69.9660465877848,1.94204500641416,5.71189707768869,-3.76468350071368e-07,20.0000129806075 +00:00:22.5000,69.965956678181,1.94204996146896,5.7119116513793,-3.39756890166345e-07,20.0000117147985 +00:00:22.6000,69.9658667683588,1.94205443324072,5.71192480364919,-3.06625365035135e-07,20.0000105724254 +00:00:22.7000,69.9657768583395,1.94205846885779,5.71193667311115,-2.76724671438877e-07,20.0000095414512 +00:00:22.8000,69.9656869481423,1.94206211085156,5.71194738485752,-2.49739756679329e-07,20.0000086110129 +00:00:22.9000,69.9655970377846,1.94206539760661,5.71195705178416,-2.25386286793238e-07,20.0000077713066 +00:00:23.0000,69.965507127282,1.94206836376416,5.71196577577694,-2.03407656203178e-07,20.0000070134846 +00:00:23.1000,69.9654172166487,1.94207104058782,5.7119736487877,-1.83572279294267e-07,20.0000063295619 +00:00:23.2000,69.9653273058974,1.94207345629222,5.71198075380066,-1.6567115551724e-07,20.0000057123322 +00:00:23.3000,69.9652373950397,1.94207563634039,5.71198716570704,-1.49515667128483e-07,20.0000051552919 +00:00:23.4000,69.9651474840858,1.94207760371213,5.7119929520945,-1.34935590735093e-07,20.0000046525716 +00:00:23.5000,69.9650575730452,1.94207937914776,5.711998173964,-1.21777292335264e-07,20.0000041988743 +00:00:23.6000,69.9649676619264,1.94208098136322,5.7120028863624,-1.09902132559066e-07,20.0000037894194 +00:00:23.7000,69.964877750737,1.94208242725067,5.71200713897257,-9.91849831262015e-08,20.0000034198927 +00:00:23.8000,69.9647878394838,1.94208373205464,5.7120109766313,-8.95129194594429e-08,20.0000030864006 +00:00:23.9000,69.9646979281731,1.9420849095325,5.71201443980148,-8.07840335277894e-08,20.000002785429 +00:00:24.0000,69.9646080168105,1.94208597210124,5.71201756500364,-7.290634667504e-08,20.0000025138068 +00:00:24.1000,69.9645181054011,1.94208693096606,5.71202038519429,-6.57968555055175e-08,20.000002268672 +00:00:24.2000,69.9644281939495,1.94208779623968,5.71202293011672,-5.93806502123184e-08,20.0000020474416 +00:00:24.3000,69.9643382824597,1.94208857704904,5.71202522661481,-5.35901228762552e-08,20.0000018477845 +00:00:24.4000,69.9642483709354,1.94208928163073,5.71202729891392,-4.83642604408262e-08,20.0000016675971 +00:00:24.5000,69.9641584593801,1.94208991741814,5.71202916887688,-4.36480001994945e-08,20.0000015049807 +00:00:24.6000,69.9640685477968,1.9420904911197,5.71203085623441,-3.93916491328248e-08,20.000001358222 +00:00:24.7000,69.9639786361882,1.9420910087901,5.71203237879442,-3.55503571145613e-08,20.0000012257744 +00:00:24.8000,69.9638887245568,1.94209147589359,5.7120337526282,-3.20836476081707e-08,20.0000011062426 +00:00:24.9000,69.9637988129049,1.94209189736036,5.71203499223634,-2.89549997576191e-08,20.0000009983669 +00:00:25.0000,69.9637089012343,1.94209227764142,5.71203611071006,-2.61314431800361e-08,20.0000009010108 +00:00:25.0003,69.9637086172769,1.9421835159227,5.71230445859618,6.32110153764309e-07,20.0000009051244 +00:00:25.0006,69.9637083332856,1.94252540819932,5.71331002411563,3.09868493187423e-06,20.0000009279463 +00:00:25.0010,69.9637079353467,1.94376600812935,5.71695884743926,1.20488011109205e-05,20.000001055234 +00:00:25.0016,69.9637074506303,1.94687138217043,5.72609230050127,3.44510193012369e-05,20.0000015196261 +00:00:25.0021,69.9637069648739,1.95204658029972,5.74131347146977,7.1781891697426e-05,20.0000025562235 +00:00:25.0026,69.9637064775415,1.95950427555653,5.76324786928391,0.000125570710309936,20.0000044600243 +00:00:25.0032,69.9637059880546,1.96934014719506,5.79217690351489,0.000196500282961751,20.0000075490493 +00:00:25.0039,69.9637053049955,1.98693146331108,5.84391606856201,0.00032332323365617,20.0000144709529 +00:00:25.0050,69.9637043386157,2.01907334126435,5.93845100371868,0.000554936586183788,20.0000308373412 +00:00:25.0063,69.9637030274932,2.07483652015423,6.10246035339481,0.000956427564900581,20.0000682176647 +00:00:25.0082,69.963701232918,2.1698837589596,6.38201105576353,0.00163978245280836,20.0001528944663 +00:00:25.0107,69.9636985825084,2.33874296640601,6.87865578354709,0.00285079752912157,20.0003564062495 +00:00:25.0138,69.9636949811152,2.60036701580271,7.64813828177269,0.00471953702321733,20.0007807513608 +00:00:25.0170,69.9636909643109,2.91159133401345,8.56350392356896,0.00693074026510223,20.0014307261179 +00:00:25.0201,69.9636864669297,3.26323699763335,9.5977558753922,0.00941388730363673,20.002340262497 +00:00:25.0233,69.9636814362441,3.64642195197958,10.7247704469988,0.0121016109642055,20.0035360244335 +00:00:25.0264,69.9636758323306,4.05260120341662,11.9194153041665,0.014930290675703,20.0050373386494 +00:00:25.0296,69.9636696275869,4.47357078769051,13.1575611402662,0.0178402407039091,20.0068566148759 +00:00:25.0334,69.9636611371079,5.00001501433158,14.7059265127399,0.0214486534050244,20.0095424398998 +00:00:25.0373,69.9636517078023,5.52349516490513,16.2455740144268,0.0250035256035537,20.012716871844 +00:00:25.0412,69.9636413561093,6.03159194986079,17.73997632312,0.0284226574294786,20.0163670343636 +00:00:25.0459,69.9636275723051,6.61247151702183,19.4484456382995,0.0322940775205494,20.0214142968408 +00:00:25.0506,69.9636125851681,7.1376714337184,20.9931512756424,0.0357598282513899,20.0270706167745 +00:00:25.0553,69.9635965293186,7.59417094982323,22.3357969112448,0.03874480090241,20.0332628266907 +00:00:25.0613,69.9635749580737,8.05901552342595,23.7029868336057,0.0417558830274644,20.0417214122415 +00:00:25.0687,69.9635464960365,8.45399083057081,24.8646789134436,0.0442853899733701,20.0530271712433 +00:00:25.0762,69.9635170210596,8.64474431676259,25.4257185787135,0.0454840918976987,20.0648254507941 +00:00:25.0822,69.9634929542324,8.66076326806019,25.4728331413535,0.0455616584478611,20.0744820605338 +00:00:25.0882,69.9634689828938,8.5724390734298,25.213056098323,0.0449680824300319,20.0840863639021 +00:00:25.0942,69.9634453694581,8.40088899237271,24.7084970363903,0.0438380204456321,20.0935094384717 +00:00:25.1003,69.9634223127547,8.16903695144576,24.0265792689581,0.0423165062862446,20.1026532321469 +00:00:25.1063,69.9633999483616,7.89983025605445,23.2347948707484,0.0405490407839604,20.1114502678324 +00:00:25.1123,69.9633783506408,7.61478709290444,22.3964326261895,0.0386732349290845,20.1198628056251 +00:00:25.1183,69.9633575379252,7.33291084269351,21.5673848314515,0.036812172600905,20.1278806021535 +00:00:25.1243,69.9633374803089,7.0699715077822,20.7940338464182,0.0350695876354409,20.1355174081162 +00:00:25.1303,69.9633181090615,6.83812560076558,20.1121341198988,0.0335268592480427,20.1428065923138 +00:00:25.1378,69.9632949012969,6.60682096162532,19.4318263577215,0.0319802145688162,20.1514346706554 +00:00:25.1468,69.9632676853269,6.41824970763801,18.8772050224647,0.0307098514733492,20.1614322681622 +00:00:25.1558,69.9632410496621,6.32897636116427,18.6146363563655,0.0300973672852123,20.1711300364633 +00:00:25.1648,69.9632146070032,6.328853495004,18.6142749853059,0.0300770086096399,20.1807238445131 +00:00:25.1738,69.9631880256108,6.39962713246636,18.8224327425481,0.030526770084666,20.1903815594258 +00:00:25.1829,69.9631610579372,6.51849029070511,19.1720302667797,0.0312934557697579,20.2002280601238 +00:00:25.1919,69.9631335526148,6.66162308821399,19.5930090829823,0.0322176428416387,20.2103390819909 +00:00:25.2009,69.9631054526367,6.80718345923807,20.0211278212884,0.0331543231002597,20.220742391015 +00:00:25.2099,69.9630767828126,6.93749661650259,20.4044018132429,0.0339874090045417,20.231424510216 +00:00:25.2189,69.9630476300353,7.04033701920899,20.7068735859088,0.0346376590890881,20.2423410030157 +00:00:25.2302,69.9630107238453,7.1211513679488,20.9445628469082,0.0351357170472592,20.2562086223517 +00:00:25.2448,69.9629625339185,7.15096781020417,21.0322582653064,0.0352901016706003,20.2743415643138 +00:00:25.2594,69.9629143503045,7.11534474709425,20.9274845502772,0.0350171703500673,20.2924506945274 +00:00:25.2740,69.9628665029566,7.0445406388032,20.7192371729506,0.0345151709550779,20.3103717319886 +00:00:25.2886,69.9628191278386,6.96941536126178,20.4982804742993,0.0339856840968772,20.3280372691615 +00:00:25.3032,69.9627721839307,6.91302809589093,20.3324355761498,0.0335793560190211,20.345468138462 +00:00:25.3178,69.9627255155984,6.88660144942447,20.2547101453661,0.033369418231959,20.3627422644043 +00:00:25.3365,69.9626657031355,6.89379297938961,20.2758617040871,0.0333688821748037,20.3848440764536 +00:00:25.3553,69.9626057170989,6.93034338321428,20.3833628918067,0.0335596570428624,20.4070007204562 +00:00:25.3740,69.9625454045173,6.97402073540201,20.5118256923588,0.0337960821143673,20.4292880015199 +00:00:25.3927,69.962484772928,7.00727485846013,20.6096319366474,0.0339638911479386,20.4517017485107 +00:00:25.4115,69.9624239350257,7.02254119739464,20.6545329335136,0.0340143717613038,20.4741857086928 +00:00:25.4390,69.9623344248643,7.02065073928146,20.6489727625925,0.0339306618022361,20.5072173278457 +00:00:25.4666,69.9622449764476,7.00878248678061,20.61406613759,0.0337827511458601,20.5401492198803 +00:00:25.4941,69.9621556054193,7.0046284779996,20.6018484647047,0.0336853464298153,20.5729740373085 +00:00:25.5000,69.9621366969866,7.00545419989862,20.6042770585254,0.0336758163265917,20.5799091856623 +00:00:25.5004,69.9621352112258,7.00607238510192,20.6060952502998,0.0336786467481291,20.5804540077566 +00:00:25.5009,69.9621337251638,7.00803649607295,20.6118720472734,0.0336901818749622,20.5809989596181 +00:00:25.5016,69.9621313682352,7.01597481841131,20.6352200541509,0.0337396660727854,20.5818634544864 +00:00:25.5023,69.9621290073608,7.03111868268011,20.6797608314121,0.033835723340084,20.5827298480198 +00:00:25.5030,69.962126640003,7.05444454674177,20.7483663139464,0.0339846249295597,20.5835993907665 +00:00:25.5038,69.9621242633762,7.08628979981929,20.8420288229979,0.034188486227309,20.5844734543114 +00:00:25.5047,69.9621210928057,7.14154347182643,21.0045396230189,0.0345426914000374,20.5856418889903 +00:00:25.5062,69.9621163072071,7.25050245227084,21.3250072125613,0.0352413943900476,20.5874122055481 +00:00:25.5083,69.9621089293112,7.47060763623984,21.9723754007054,0.0366509243817159,20.5901614254507 +00:00:25.5115,69.9620977403393,7.89750652684811,23.2279603730827,0.0393733973930937,20.5943854584629 +00:00:25.5146,69.9620858504683,8.43706579976069,24.8148994110609,0.0427907031012256,20.5989489842953 +00:00:25.5178,69.9620731106953,9.07166656576712,26.6813722522562,0.0467755580679549,20.6039210538392 +00:00:25.5209,69.9620593945096,9.7841629491816,28.7769498505341,0.0512056584363673,20.6093582498667 +00:00:25.5240,69.9620446000951,10.5579429285385,31.0527733192309,0.055965228691143,20.6153038834626 +00:00:25.5279,69.9620247170957,11.5724665148512,34.0366662201506,0.0621262479269827,20.6233968556518 +00:00:25.5318,69.9620029807485,12.6265181884805,37.1368182014132,0.0684346484226546,20.6323419014835 +00:00:25.5357,69.9619793459282,13.6920020553893,40.2705942805569,0.0747182135092925,20.6421473055787 +00:00:25.5396,69.9619538154065,14.7422669698826,43.3596087349487,0.0808224859146961,20.6527994805121 +00:00:25.5444,69.9619195265587,15.9877800562703,47.0228825184422,0.0879482921859785,20.6671624641307 +00:00:25.5492,69.9618825777338,17.1322223298097,50.3888892053226,0.0943879529500097,20.6826775401464 +00:00:25.5548,69.9618370214422,18.2829671204358,53.773432707164,0.100755820664355,20.7018239251466 +00:00:25.5603,69.9617887847456,19.2200349053272,56.5295144274331,0.105853784820634,20.7220940955963 +00:00:25.5672,69.9617264281006,20.0531505419429,58.9798545351261,0.110299001666547,20.7482729199223 +00:00:25.5741,69.9616619981354,20.5246262900019,60.3665479117704,0.112736486103243,20.7752875114466 +00:00:25.5809,69.9615965950666,20.6571588559332,60.756349576274,0.113325698708212,20.8026752938807 +00:00:25.5878,69.9615312177497,20.4973605253921,60.2863544864473,0.112332948486221,20.830021566847 +00:00:25.5947,69.961466693874,20.107911694416,59.1409167482824,0.110095918095399,20.856984090934 +00:00:25.6015,69.9614036415083,19.5591162114579,57.5268123866408,0.106986905132626,20.8833062700664 +00:00:25.6084,69.9613424567646,18.9213249351772,55.6509556916975,0.103379493077091,20.9088214713873 +00:00:25.6153,69.9612833227623,18.258974704602,53.7028667782412,0.0996208565788958,20.9334500222694 +00:00:25.6222,69.961226234422,17.6265058142045,51.8426641594251,0.0960107542777931,20.9571903738354 +00:00:25.6290,69.961171033383,17.0660886297937,50.1943783229227,0.0927875668473801,20.9801060473894 +00:00:25.6359,69.9611174478071,16.6068858593994,48.84378193941,0.0901211892862841,21.0023100208857 +00:00:25.6445,69.9610518945121,16.1984095499935,47.6423810293927,0.0877120272012922,21.0294183727195 +00:00:25.6552,69.9609721565644,15.952265152684,46.918426919659,0.0861926742608404,21.0623219138294 +00:00:25.6641,69.9609064104853,15.9490217697474,46.9088875580805,0.0860694270038149,21.0894050350902 +00:00:25.6730,69.9608403944759,16.0927465756538,47.3316075754523,0.0867753532579304,21.1165711983687 +00:00:25.6819,69.9607735919514,16.3391134415434,48.0562160045395,0.0880545229316972,21.1440417530566 +00:00:25.6908,69.9607056775947,16.640876606082,48.9437547237705,0.0896359215343354,21.1719542481223 +00:00:25.6997,69.9606365128096,16.9538090840026,49.8641443647136,0.0912691652051197,21.2003650944386 +00:00:25.7086,69.9605661239891,17.2411782911643,50.7093479151892,0.0927498511846627,21.2292599897385 +00:00:25.7175,69.960494666617,17.4765672362037,51.4016683417756,0.0939340355967207,21.2585702596483 +00:00:25.7292,69.96039920786,17.6838738886268,52.0113937900789,0.0949179138494723,21.2976810666003 +00:00:25.7324,69.9603728897538,17.7193331747222,52.1156858080066,0.0950689564447409,21.3084547570042 +00:00:25.7382,69.9603251043893,17.7530313166543,52.2147979901597,0.0951741070871876,21.3280043738213 +00:00:25.7441,69.9602773269322,17.7311552507684,52.1504566199071,0.0949737661951516,21.3475259517451 +00:00:25.7499,69.9602296802402,17.6826257361823,52.0077227534775,0.0946274203548353,21.3669763393014 +00:00:25.7572,69.960170139666,17.5956114640579,51.7517984236996,0.0940501124302474,21.3912532395206 +00:00:25.7645,69.9601108324008,17.4962346827648,51.4595137728378,0.0934056432931676,21.4154142813348 +00:00:25.7755,69.960022436358,17.3410003278493,51.0029421407332,0.0924067050483623,21.4513769923148 +00:00:25.7920,69.9598906338955,17.14579037182,50.4287952112354,0.0911186481982922,21.5048812084745 +00:00:25.8085,69.95975992934,17.0394986651713,50.1161725446214,0.0903244461361371,21.5578024137537 +00:00:25.8250,69.959629620807,17.0395938617264,50.1164525344895,0.0901183638582584,21.6104360112814 +00:00:25.8415,69.9594990089539,17.1249789979848,50.3675852881905,0.0903808584826817,21.6630759266782 +00:00:25.8580,69.9593676189548,17.2529634740621,50.7440102178296,0.0908743356703106,21.7159203801753 +00:00:25.8745,69.9592352881294,17.3799015322492,51.1173574477918,0.0913586181163367,21.7690358730042 +00:00:25.8910,69.9591021232396,17.4761741060576,51.4005120766401,0.0916729222503879,21.8223763753197 +00:00:25.9120,69.9589322296033,17.5420059583703,51.5941351716775,0.0917634783326539,21.8902635012942 +00:00:25.9398,69.9587066946424,17.5684253638472,51.6718393054331,0.0915544577603959,21.9800894291903 +00:00:25.9675,69.9584808413994,17.5796028030464,51.7047141266071,0.0912652762306231,22.0697031130589 +00:00:25.9953,69.9582546120768,17.6178835560835,51.8173045767162,0.0911242156130736,22.1591298295279 +00:00:26.0000,69.9582164727709,17.6281331092107,51.8474503212078,0.0911210407023321,22.1741731638457 +00:00:26.0008,69.9582097250963,17.6324953460615,51.8602804295926,0.0911341791356351,22.1768337004891 +00:00:26.0016,69.9582029744519,17.6426902661254,51.8902654886041,0.091178647716277,22.1794951540066 +00:00:26.0030,69.958191861016,17.6791193867718,51.9974099610936,0.0913573309089066,22.1838762333464 +00:00:26.0043,69.9581807158832,17.7423934601081,52.1835101767885,0.0916799042927331,22.1882694764874 +00:00:26.0057,69.9581695223718,17.8331245034635,52.4503661866573,0.0921492820199845,22.1926816941797 +00:00:26.0070,69.958158263693,17.9500681596892,52.7943181167329,0.0927583046247912,22.1971197213281 +00:00:26.0096,69.9581369649734,18.2317859824916,53.6228999485046,0.0942307763584072,22.2055164154021 +00:00:26.0148,69.9580923168673,19.0153994638207,55.9276454818256,0.0983234106532295,22.2231237440281 +00:00:26.0199,69.9580455203673,20.029958350976,58.9116422087528,0.103585686198286,22.2415829919552 +00:00:26.0251,69.9579961263667,21.2034044910277,62.3629543853757,0.109606967152696,22.2610633409189 +00:00:26.0303,69.9579438338426,22.4665449131218,66.0780732738876,0.116005956268732,22.2816702921065 +00:00:26.0354,69.9578885004927,23.7552329301147,69.8683321473961,0.122444254857042,22.3034439857304 +00:00:26.0406,69.9578301315804,25.0116833853275,73.5637746627281,0.128631874061558,22.32636647067 +00:00:26.0458,69.9577688621513,26.1858668531357,77.0172554503992,0.134330860059781,22.3503712096785 +00:00:26.0521,69.9576905613026,27.4462187994144,80.7241729394542,0.140349190454501,22.3809612183117 +00:00:26.0584,69.9576089326172,28.4725720992328,83.7428591153905,0.145158164648883,22.4127538890477 +00:00:26.0663,69.9575032481339,29.3841530406678,86.4239795313759,0.149319018251312,22.4537883450238 +00:00:26.0742,69.9573949974939,29.8767898692904,87.8729113802658,0.151444458902043,22.4957005505832 +00:00:26.0821,69.9572856301215,29.9838366545556,88.18775486634,0.151726306094089,22.5379567416562 +00:00:26.0900,69.9571764258548,29.7720441253843,87.564835662895,0.150494592488983,22.5800909247313 +00:00:26.0979,69.9570683887492,29.3283109057505,86.2597379580896,0.148161924439753,22.6217391466682 +00:00:26.1058,69.9569621968734,28.7460612412765,84.547238944931,0.145167587494775,22.6626552470315 +00:00:26.1137,69.9568581986628,28.1137827973248,82.68759646272,0.141929572536474,22.7027117419102 +00:00:26.1216,69.9567564449701,27.5068171583743,80.9024034069834,0.138808146660869,22.7418890259012 +00:00:26.1295,69.9566567448244,26.9825688367456,79.3604965786636,0.136082215061785,22.7802562622969 +00:00:26.1374,69.9565587333506,26.5787400702528,78.1727649125081,0.133938193781262,22.8179474225224 +00:00:26.1481,69.956428385434,26.2543239620635,77.2185998884221,0.132117563199289,22.8680180698332 +00:00:26.1609,69.9562722503661,26.1792122704455,76.997683148369,0.131462472989193,22.9278885881395 +00:00:26.1738,69.956115782144,26.3815769856554,77.5928734872218,0.13215459225699,22.9877504367684 +00:00:26.1866,69.9559576768732,26.7543574670004,78.6892866676482,0.133662928192767,23.0480837466097 +00:00:26.1995,69.9557972597117,27.182126557013,79.9474310500383,0.135421631572349,23.1091324571406 +00:00:26.2123,69.9556344736581,27.5678579393738,81.0819351158054,0.136963738282176,23.1709115570451 +00:00:26.2252,69.9554697277929,27.8498897937131,81.9114405697443,0.137999771229472,23.233266369252 +00:00:26.2380,69.9553036790887,28.0067494640213,82.3727925412392,0.138434808125203,23.2959544365079 +00:00:26.2557,69.9550748214875,28.0542361596482,82.512459293083,0.13823455331776,23.3821136377055 +00:00:26.2733,69.9548459769248,27.9868978089063,82.3144053203126,0.137494405688079,23.468004852374 +00:00:26.2909,69.9546176727144,27.9009580199134,82.0616412350395,0.136671777400486,23.5534401400241 +00:00:26.3086,69.9543898028719,27.8671964898115,81.9623426170927,0.13610019775469,23.6384605323644 +00:00:26.3262,69.9541618680038,27.9137446339279,82.0992489233175,0.135909656841834,23.7232478208957 +00:00:26.3529,69.9538161587404,28.0944423458879,82.6307127820234,0.136139998192052,23.8513411091294 +00:00:26.3795,69.9534680388003,28.3226051891815,83.3017799681808,0.136587891443793,23.9797129497909 +00:00:26.4062,69.9531174192671,28.5173096157489,83.8744400463203,0.136875188473442,24.1083918372678 +00:00:26.4329,69.9527647946992,28.6518802499769,84.2702360293439,0.136881798688643,24.237200126127 +00:00:26.4742,69.9522151498113,28.8091935599669,84.7329222351968,0.136656695645751,24.4367978876659 +00:00:26.5000,69.9518709189197,28.9066902409901,85.0196771793827,0.136515611551231,24.5610822562353 +00:00:26.5013,69.9518523239977,28.9199972425768,85.0588154193434,0.136544839896074,24.5677803176777 +00:00:26.5027,69.9518337149861,28.9505504985789,85.1486779369967,0.136652837942025,24.5744817398732 +00:00:26.5048,69.9518057056169,29.0401601008163,85.4122355906362,0.137014438008451,24.5845647600706 +00:00:26.5069,69.9517775838899,29.1826185139426,85.8312309233605,0.137616389851006,24.5946833707912 +00:00:26.5090,69.9517493013855,29.3744981641633,86.3955828357743,0.138442066304495,24.6048543287783 +00:00:26.5121,69.9517061062991,29.7452916264546,87.4861518425136,0.14005275517352,24.6203759826537 +00:00:26.5184,69.9516186838413,30.6977984085069,90.2876423779615,0.144205303523574,24.6517371930954 +00:00:26.5246,69.9515282103345,31.8663081927458,93.7244358610171,0.149280775705811,24.6841101909974 +00:00:26.5309,69.9514342299302,33.1486612167797,97.4960624022931,0.154801672931827,24.7176389785187 +00:00:26.5371,69.9513365430595,34.4507847340149,101.325837452985,0.160342871207997,24.7523775163527 +00:00:26.5434,69.9512352022493,35.6913655905757,104.974604678164,0.165551263613131,24.7882943583943 +00:00:26.5496,69.9511304745134,36.8046280501157,108.248906029752,0.170153640770478,24.8252882169533 +00:00:26.5574,69.9509957825894,37.9411142875917,111.591512610564,0.174754599150827,24.8727005858696 +00:00:26.5668,69.9508281432597,38.8856341023585,114.36951206576,0.178435822901612,24.9314931786077 +00:00:26.5763,69.9506574264557,39.350473972682,115.736688154947,0.180063225047683,24.991171619328 +00:00:26.5857,69.9504855806609,39.3867729015806,115.843449710531,0.179881158660264,25.051102883729 +00:00:26.5951,69.9503142472322,39.0933827372021,114.980537462359,0.17831617666248,25.1107590216501 +00:00:26.6046,69.9501445947371,38.5929572856223,113.508697898889,0.175884408152679,25.1697660268874 +00:00:26.6140,69.9499772626425,38.0088692805817,111.790792001711,0.173102900172393,25.2279197530429 +00:00:26.6235,69.9498123940304,37.4475908804647,110.139973177837,0.170420071069351,25.28517526061 +00:00:26.6329,69.9496497297893,36.9880515112586,108.788386797819,0.16817107122644,25.3416172484409 +00:00:26.6423,69.9494887352538,36.6775891098562,107.875262087812,0.166558386202972,25.3974198054426 +00:00:26.6555,69.9492661742935,36.5165047161559,107.401484459282,0.165470743159615,25.4744310344684 +00:00:26.6686,69.9490437713696,36.6320886062365,107.741437077166,0.165560171279065,25.5512043048361 +00:00:26.6817,69.9488201350826,36.942540885376,108.654532015812,0.166470941020694,25.6281892054945 +00:00:26.6948,69.948594399502,37.3448518253498,109.837799486323,0.167759956724567,25.7056622220079 +00:00:26.7080,69.9483662867599,37.7427860051903,111.008194132913,0.169019348298687,25.7837083991133 +00:00:26.7211,69.9481360123083,38.0672709418267,111.962561593608,0.169961865159778,25.8622544804942 +00:00:26.7374,69.9478479841701,38.3229606057121,112.7145900168,0.17051093709973,25.9601842514238 +00:00:26.7608,69.9474324412328,38.4581188129733,113.112114155804,0.170333013948652,26.100905709975 +00:00:26.7842,69.9470160470361,38.4529857141493,113.097016806322,0.169579203324873,26.2412898743917 +00:00:26.8076,69.9465994535177,38.4610137339165,113.120628629166,0.168887230053161,26.3811349206713 +00:00:26.8310,69.9461821429588,38.5691113733632,113.438562862833,0.168612225874664,26.5206078051701 +00:00:26.8544,69.9457631411976,38.7772440286863,114.05071773143,0.168748133529048,26.6600158962208 +00:00:26.8840,69.9452287581203,39.0918748345795,114.976102454646,0.169124203116279,26.8368884264362 +00:00:26.9136,69.9446903860943,39.3785481045181,115.819259130936,0.169381666792455,27.0140498459433 +00:00:26.9433,69.9441485552473,39.6025423550271,116.47806575008,0.169383603122371,27.1913335713649 +00:00:26.9902,69.9432855534228,39.906881395146,117.373180573959,0.169187034400583,27.4716651651823 +00:00:27.0000,69.9431048418869,39.9663761609179,117.54816517917,0.169130842356252,27.5300544879964 +00:00:27.0021,69.9430658267926,39.9943453247014,117.630427425592,0.169179063907113,27.5426464816683 +00:00:27.0042,69.9430267686483,40.0528654229227,117.802545361537,0.169348871015678,27.5552468459374 +00:00:27.0068,69.9429778229014,40.1782254652343,118.171251368336,0.169768465834626,27.5710281889026 +00:00:27.0094,69.9429286910542,40.3586301119803,118.70185327053,0.170405891708404,27.5868585839527 +00:00:27.0128,69.94286531453,40.6585590946543,119.583997337219,0.171493039310058,27.6072604167473 +00:00:27.0205,69.9427195140654,41.5373876893566,122.168787321637,0.174727904571668,27.6541058827193 +00:00:27.0281,69.9425702880818,42.6030015332758,125.302945686105,0.178665799444098,27.7019143361284 +00:00:27.0358,69.942417224674,43.7305664059136,128.619312958569,0.182806472982382,27.7507998737347 +00:00:27.0434,69.9422602846503,44.8119351524706,131.799809271972,0.186728096393264,27.8007640562377 +00:00:27.0511,69.9420997670273,45.7628968331073,134.596755391492,0.190112560569665,27.851709084043 +00:00:27.0606,69.9418973927588,46.6733536187237,137.274569466835,0.193246429191601,27.9157351030102 +00:00:27.0723,69.9416417602249,47.3503418164617,139.265711224887,0.195380668644606,27.9963406641294 +00:00:27.0841,69.9413837123132,47.5543284683755,139.86567196581,0.195710287582768,28.0774642462852 +00:00:27.0958,69.9411254856445,47.389316210308,139.380341795023,0.194645802127971,28.1584569482009 +00:00:27.1076,69.940868667337,47.0046673711424,138.249021679831,0.192757209032973,28.2388619089216 +00:00:27.1194,69.9406140416885,46.5543690030541,136.924614714865,0.190627288045206,28.3184554668754 +00:00:27.1311,69.9403616432873,46.1649581650942,135.779288720865,0.188734674812934,28.3972305970705 +00:00:27.1429,69.940110946474,45.917784426274,135.0523071361,0.187387008261242,28.4753419139381 +00:00:27.1576,69.9397982178976,45.8512965703762,134.856754618754,0.186626089788058,28.5725644890525 +00:00:27.1762,69.9394013207254,46.0862192072465,135.547703550725,0.186870841754713,28.6955562517435 +00:00:27.1949,69.9390016401035,46.5288259305472,136.849488031021,0.187891298064271,28.8189233426976 +00:00:27.2135,69.9385981845444,47.0003354538341,138.236280746571,0.189008240774685,28.9429450279289 +00:00:27.2321,69.9381912002261,47.3711602629515,139.326941949857,0.189739045777613,29.0675450644872 +00:00:27.2508,69.9377816681505,47.5954110992576,139.986503233111,0.189919967565352,29.1924402613441 +00:00:27.2784,69.9371711816367,47.7495358197378,140.439811234523,0.189527109767107,29.3777798376918 +00:00:27.3061,69.9365588702911,47.8462630188961,140.724302996753,0.188928604480075,29.5626973408702 +00:00:27.3338,69.9359446517903,48.0184206045623,141.230648836948,0.188612983725629,29.7472199442764 +00:00:27.3615,69.9353275446847,48.2938915992574,142.040857644875,0.188676877322345,29.9316247706773 +00:00:27.4012,69.9344352225818,48.7501347291849,143.382749203485,0.188986074307812,30.1965216765588 +00:00:27.4409,69.9335350829079,49.1703124912458,144.618566150723,0.189159498275155,30.4616902605205 +00:00:27.4806,69.9326278799538,49.5247224736832,145.660948452009,0.189094883771798,30.7269200121033 +00:00:27.5000,69.9321835480661,49.6823278762487,146.124493753673,0.189010032472705,30.8561023263801 +00:00:27.5050,69.9320663261939,49.7659114329073,146.370327743845,0.189137485031841,30.8901035968342 +00:00:27.5101,69.9319488188245,49.9205509840544,146.825149953101,0.189516839588128,30.9241516911252 +00:00:27.5152,69.9318308686229,50.1436223509267,147.481242208608,0.190137574785638,30.9582890418629 +00:00:27.5203,69.931712336991,50.4183594526239,148.289292507717,0.190938986071124,30.9925528005446 +00:00:27.5314,69.9314507835618,51.0952029298795,150.280008617293,0.192949249628986,31.0680026085889 +00:00:27.5426,69.931185746225,51.7890510363901,152.320738342324,0.19500255208902,31.144238068053 +00:00:27.5537,69.930917420402,52.3939517383026,154.099858053831,0.196728518472325,31.221200979088 +00:00:27.5648,69.930646407067,52.8441457647282,155.423958131554,0.197903029280828,31.2987260098329 +00:00:27.5805,69.9302620980486,53.1876145605038,156.43416047207,0.198537195005376,31.4083393275069 +00:00:27.5962,69.9298762720272,53.2517862337338,156.622900687452,0.198200779435568,31.5180459999885 +00:00:27.6118,69.9294904694897,53.1534604994538,156.333707351335,0.197305966006465,31.627439003054 +00:00:27.6275,69.9291054004784,53.0224650055977,155.948426487052,0.196304371109124,31.7363333296853 +00:00:27.6432,69.9287209732776,52.9587241911045,155.760953503249,0.195540714851117,31.8447561688981 +00:00:27.6624,69.9282497497031,53.0370597147574,155.991352102228,0.195148893132028,31.977247408667 +00:00:27.6896,69.9275793453799,53.3762851432372,156.989073950698,0.195378808356789,32.164921704115 +00:00:27.7168,69.9269041904661,53.8247612814055,158.308121415898,0.19597657846259,32.3529376784308 +00:00:27.7440,69.9262239250668,54.2230068091041,159.479431791483,0.196396087709592,32.5413845203029 +00:00:27.7712,69.9255394135771,54.5096405161968,160.322472106461,0.196434084796577,32.7300345302799 +00:00:27.8108,69.9245375551435,54.8260974608602,161.253227826059,0.196151364251681,33.0044509406145 +00:00:27.8504,69.9235294899752,55.1561334169428,162.223921814538,0.195918011451249,33.2785794436907 +00:00:27.8900,69.9225145712319,55.5603296477679,163.412734258141,0.195932971142171,33.5525863614615 +00:00:27.9482,69.9210074532017,56.1965504364539,165.283971871923,0.19608894923224,33.9558650472361 +00:00:28.0000,69.919654943087,56.7355473473164,166.869256903872,0.196138215487647,34.3141979142912 +00:00:28.0057,69.9195051065081,56.7450037829166,166.897069949755,0.19598109483326,34.3536929561432 +00:00:28.0114,69.9193553516703,56.6781669686319,166.700491084212,0.195576506849092,34.3931299350844 +00:00:28.0171,69.9192058617763,56.5418097372047,166.299440403543,0.194946965315554,34.432463586958 +00:00:28.0239,69.9190259971286,56.3169024524569,165.637948389579,0.193992738458035,34.4797483450134 +00:00:28.0365,69.9187000937606,55.8604966009284,164.295578238025,0.192107517336881,34.5653166326377 +00:00:28.0491,69.9183766452162,55.4482369259448,163.083049782191,0.190372330868607,34.6500996479784 +00:00:28.0616,69.9180551084855,55.182023509807,162.300069146491,0.189117972159856,34.734234770699 +00:00:28.0771,69.9176593639257,55.1130033571216,162.097068697417,0.188419057331128,34.8375666132342 +00:00:28.0976,69.9171333616894,55.3821388235966,162.888643598814,0.188664536244041,34.974494821818 +00:00:28.1182,69.9166039141103,55.8764842718484,164.342600799554,0.189632539202435,35.1118163340938 +00:00:28.1388,69.9160699579134,56.3777591187958,165.816938584694,0.19061263538553,35.2497883055547 +00:00:28.1593,69.9155320074158,56.7429206971002,166.890943226765,0.191148031490209,35.3882793194278 +00:00:28.1799,69.914991375057,56.9418472029062,167.476021185018,0.191149076860053,35.5269652638044 +00:00:28.2076,69.9142581780999,57.069007039697,167.850020704991,0.190700776752884,35.7142916403784 +00:00:28.2354,69.9135231708685,57.187905848531,168.199723083915,0.190231183908498,35.9012232372554 +00:00:28.2632,69.9127858817833,57.4020810815747,168.829650239926,0.190066481786398,36.0878769825974 +00:00:28.2978,69.9118639180248,57.7840392916021,169.953056740006,0.190225354027189,36.3200711584607 +00:00:28.3324,69.9109358103526,58.1930467753758,171.156019927576,0.190465606820052,36.5524637873262 +00:00:28.3750,69.9097830860015,58.6298137850133,172.440628779451,0.190547259244464,36.8392537914147 +00:00:28.4282,69.9083339587088,59.1054098917655,173.839440858134,0.190433719773696,37.1969636778554 +00:00:28.5000,69.906358799241,59.7675151627936,175.786809302334,0.190343463478056,37.6795947520968 +00:00:28.5022,69.9062967697684,59.7682828313897,175.789067151146,0.19028001794795,37.6946615655327 +00:00:28.5044,69.9062347644986,59.7275043788482,175.669130526024,0.190090123163911,37.7097175433949 +00:00:28.5072,69.9061570601499,59.6056653861345,175.310780547454,0.189636838413893,37.728579345457 +00:00:28.5101,69.906079561733,59.4104299544221,174.736558689477,0.188960281441208,37.7473851483497 +00:00:28.5138,69.905977826736,59.0600998792531,173.70617611545,0.187785422319025,37.772064662145 +00:00:28.5219,69.9057571374232,58.0473974097292,170.72763944038,0.18446304405656,37.8255781876667 +00:00:28.5301,69.9055406088219,56.8324552167243,167.154280049189,0.180519299934735,37.878055678846 +00:00:28.5382,69.9053286396484,55.5899424876505,163.499830846031,0.176485954730408,37.9294030354797 +00:00:28.5464,69.905121088842,54.4607965363361,160.178813342165,0.172797196750488,37.9796522802539 +00:00:28.5545,69.9049173654258,53.5440567814216,157.482519945358,0.169762399318874,38.0289417025195 +00:00:28.5645,69.9046698722858,52.7872396120421,155.256587094241,0.167177914293731,38.0887654080853 +00:00:28.5777,69.9043487801712,52.4248132735412,154.190627275121,0.165747689897439,38.166269950926 +00:00:28.5909,69.9040281187526,52.6673524115293,154.903977680969,0.166195856133471,38.2435305887241 +00:00:28.6040,69.9037048990342,53.3125809356352,156.801708634221,0.167883679939558,38.32125237249 +00:00:28.6172,69.9033773928625,54.123003417341,159.18530416865,0.17006683384047,38.3998382505336 +00:00:28.6304,69.9030452037612,54.8873031435285,161.43324453979,0.172092294533943,38.4793751932756 +00:00:28.6435,69.9027089980361,55.4624839369871,163.124952755845,0.173526494928566,38.5597014211165 +00:00:28.6567,69.9023700562476,55.7894829369748,164.086714520514,0.174196814866304,38.6405142137723 +00:00:28.6754,69.9018883821051,55.8894312086038,164.380680025305,0.174039138485841,38.7550887301293 +00:00:28.6940,69.9014068013267,55.7330116974546,163.920622639572,0.173106525326645,38.8693397609864 +00:00:28.7127,69.9009265615075,55.5319810161248,163.329355929779,0.172044569442769,38.9829809719748 +00:00:28.7313,69.9004474467444,55.4424104414063,163.06591306296,0.171325459147383,39.0960655080489 +00:00:28.7499,69.8999683442646,55.5227588881163,163.302232023872,0.171122975056007,39.2088526891444 +00:00:28.7777,69.8992524700374,55.8575783884839,164.286995260247,0.171469738214923,39.3768210992331 +00:00:28.8055,69.8985320628123,56.2677716196971,165.493445940285,0.172037796812636,39.5451789566456 +00:00:28.8332,69.8978071433633,56.5945624419135,166.454595417393,0.172351163508445,39.7139179234322 +00:00:28.8610,69.8970788328478,56.800580957698,167.060532228523,0.172302696555665,39.8827799975572 +00:00:28.9011,69.8960206160872,57.0235178866729,167.71622907845,0.172010957315645,40.1269665364788 +00:00:28.9419,69.8949412712962,57.2914578537014,168.504287805004,0.171840472822404,40.3746251072169 +00:00:28.9827,69.8938560499992,57.6378612682458,169.523121377194,0.171901127797469,40.6222212581464 +00:00:29.0000,69.8933950149078,57.8006986449588,170.002054838114,0.171973968101565,40.7269844639904 +00:00:29.0016,69.8933521003385,57.7999007322975,169.999708036169,0.171934158144094,40.7367234274389 +00:00:29.0032,69.8933092001775,57.7635946537184,169.892925452113,0.171790641895544,40.7464570590256 +00:00:29.0054,69.8932498516482,57.6368081818042,169.52002406413,0.171368459624442,40.7599195220999 +00:00:29.0076,69.893190678769,57.4223572192895,168.889285939087,0.170690200758761,40.7733387777435 +00:00:29.0098,69.8931317661885,57.1280027101965,168.023537382931,0.169778272263898,40.7866959518743 +00:00:29.0136,69.8930314215486,56.4694740830744,166.086688479631,0.167763485253466,40.8094406405322 +00:00:29.0205,69.8928544476493,54.9335350722775,161.569220800816,0.163101720493256,40.8495356901607 +00:00:29.0274,69.8926827771201,53.1064695398532,156.195498646627,0.157566317439228,40.8884034260963 +00:00:29.0342,69.8925169920474,51.1861402179309,150.547471229209,0.151732330238365,40.9259083850445 +00:00:29.0411,69.8923571419268,49.3396325950751,145.116566456103,0.146094505300439,40.9620342517358 +00:00:29.0480,69.8922028071892,47.6955208826612,140.280943772533,0.141042387290745,40.9968716488952 +00:00:29.0548,69.8920532176922,46.3425512933759,136.301621451105,0.136852066337593,41.0305929310009 +00:00:29.0631,69.8918775164389,45.1681912757497,132.847621399264,0.133170580726331,41.0701420091575 +00:00:29.0734,69.891663331979,44.4154166287448,130.633578319838,0.130734030168866,41.1182759549541 +00:00:29.0838,69.8914510871694,44.37184363165,130.505422446029,0.130452101089589,41.1659062824894 +00:00:29.0941,69.8912378167539,44.8836459542998,132.010723395,0.131852808975294,41.2137187770399 +00:00:29.1044,69.8910213552616,45.7509393668626,134.561586373125,0.134318979283445,41.2622115917194 +00:00:29.1147,69.8908004933821,46.7659407358465,137.546884517196,0.13721384231179,41.3116588967991 +00:00:29.1250,69.8905749438068,47.7457521448387,140.428682778937,0.13998481159451,41.3621208904868 +00:00:29.1353,69.8903451727329,48.5548773521161,142.808462800342,0.142230017732753,41.4134853720768 +00:00:29.1456,69.8901121531213,49.1157403677239,144.45805990507,0.143725244797172,41.4655263459249 +00:00:29.1590,69.889806473952,49.452547741008,145.448669826494,0.144496483965396,41.5337088500161 +00:00:29.1724,69.8894998153628,49.4166285263713,145.343025077563,0.144161334229207,41.6020053754492 +00:00:29.1859,69.8891940256311,49.1411369749578,144.532755808699,0.143118882015006,41.6699980087151 +00:00:29.1993,69.8888901177929,48.7788046417099,143.467072475617,0.141822684101766,41.7374590208723 +00:00:29.2127,69.8885882506902,48.4601953768139,142.529986402394,0.140659431840275,41.804354111026 +00:00:29.2261,69.8882879306962,48.2682443172203,141.965424462413,0.139874187891909,41.870796300511 +00:00:29.2430,69.8879091111041,48.2427619468672,141.890476314315,0.139526719236197,41.9544555810724 +00:00:29.2641,69.8874379341576,48.4638856714208,142.540840210061,0.139842367424707,42.0582889016066 +00:00:29.2851,69.8869641478626,48.8123107909835,143.565619973481,0.140529746620721,42.1624574465344 +00:00:29.3061,69.8864872776726,49.130897219331,144.502638880385,0.141124709255434,42.2670653697271 +00:00:29.3272,69.8860079418887,49.3336161682256,145.098871083017,0.14137686050568,42.3719718571826 +00:00:29.3536,69.8854030617318,49.4373869192877,145.404079174376,0.141250932906586,42.5040029936099 +00:00:29.3801,69.8847972064785,49.4703494234886,145.501027716143,0.140919969575976,42.6358516175446 +00:00:29.4066,69.8841906284086,49.5329045039454,145.685013246898,0.140677166232209,42.7674627558752 +00:00:29.4330,69.8835828038784,49.6665600787047,146.078117878543,0.140641770626296,42.8989535532539 +00:00:29.4756,69.882601468276,49.9566153379043,146.931221582071,0.140801474329456,43.1104364178825 +00:00:29.5000,69.882036868542,50.1306054635312,147.44295724568,0.140914434446731,43.231662964831 +00:00:29.5011,69.8820108097827,50.1288272930161,147.4377273324,0.140891441226485,43.237250280823 +00:00:29.5022,69.8819847576582,50.1047657555512,147.366958104562,0.140804360322916,43.242835432084 +00:00:29.5037,69.881949013898,50.0201618913611,147.118123209886,0.140536488890346,43.2504969523262 +00:00:29.5053,69.8819133534558,49.8723876064235,146.683492960069,0.140086894772402,43.258138854693 +00:00:29.5068,69.881877820128,49.6630060099849,146.06766473525,0.139459924016959,43.2657515237872 +00:00:29.5090,69.8818287198805,49.2793589041624,144.939290894595,0.138321339178721,43.2762669605578 +00:00:29.5139,69.8817184585385,48.0756019201655,141.398829176957,0.134771782468368,43.299860345202 +00:00:29.5201,69.8815834104752,46.0508201252893,135.443588603792,0.12880987839615,43.3287069474068 +00:00:29.5263,69.8814546158727,43.6768818066245,128.461417078307,0.121796781625602,43.3561456898736 +00:00:29.5325,69.8813327592777,41.1710613300203,121.091356853001,0.114351377386791,43.3820157423674 +00:00:29.5387,69.8812179749213,38.7177763173882,113.875812698201,0.107012041369533,43.4062772328397 +00:00:29.5449,69.8811099190549,36.4631461662739,107.244547547864,0.100218615061607,43.4289980865144 +00:00:29.5511,69.8810078796637,34.514100154274,101.512059277276,0.0943046956967409,43.45033189403 +00:00:29.5573,69.8809106791705,32.9368350594766,96.8730442925783,0.0894866320524408,43.4705374953276 +00:00:29.5635,69.8808174239797,31.7707377008639,93.4433461790115,0.0859002998013909,43.4898214458986 +00:00:29.5698,69.8807269309923,31.0201468455906,91.235726016443,0.0835718694512099,43.5084554223592 +00:00:29.5760,69.8806380396006,30.6641145962572,90.1885723419328,0.0824453344296252,43.5267081293265 +00:00:29.5822,69.8805496766246,30.6618928006516,90.1820376489753,0.0823990558522749,43.5448291006662 +00:00:29.5884,69.880460905421,30.9584447815791,91.0542493575854,0.0832637699838565,43.5630362775858 +00:00:29.5946,69.880370959449,31.4897587774558,92.6169375807524,0.0848406822666759,43.5815075261762 +00:00:29.6008,69.8802792610784,32.1878074632513,94.6700219507391,0.0869185060006622,43.6003759922384 +00:00:29.6071,69.8801854268547,32.9850164694855,97.0147543220162,0.0892885579584102,43.6197289700122 +00:00:29.6133,69.8800892608171,33.8181146576677,99.4650431107873,0.0917572858733968,43.6396097949179 +00:00:29.6195,69.8799907378154,34.6312500571624,101.856617815183,0.0941558609306131,43.660022160951 +00:00:29.6273,69.8798638052991,35.5511228055719,104.562125898741,0.0968511209418918,43.6863732634612 +00:00:29.6351,69.8797338647505,36.3045024253448,106.777948309838,0.0990368657570322,43.7133937286809 +00:00:29.6449,69.8795679016091,36.9583994925929,108.701174978215,0.100899929109723,43.7479405608049 +00:00:29.6576,69.8793509434679,37.3260256284133,109.782428318863,0.101879659464483,43.7931128832571 +00:00:29.6680,69.8791713541266,37.2742731380717,109.630215111976,0.101632023329272,43.8304832617858 +00:00:29.6784,69.8789925098393,36.9941437547703,108.806305161089,0.100707216972441,43.8676505648062 +00:00:29.6888,69.8788152698429,36.5892016804881,107.615299060259,0.0994129640632536,43.9044204679575 +00:00:29.6992,69.8786400032546,36.1582786135426,106.347878275125,0.0980426525040426,43.9407097873834 +00:00:29.7096,69.8784666551058,35.7804884573144,105.236730756807,0.0968315137538755,43.9765314655684 +00:00:29.7200,69.8782948583849,35.5073759150328,104.433458573626,0.0959330772771875,44.011969251582 +00:00:29.7336,69.8780720035602,35.3406465327746,103.943078037572,0.0953267388368053,44.0578646820144 +00:00:29.7508,69.8777900357499,35.3957069975268,104.105020580961,0.0953518925533526,44.1158502755976 +00:00:29.7680,69.8775069472734,35.6443419755125,104.836299927978,0.0959511067666416,44.1740051867628 +00:00:29.7852,69.8772217667234,35.9509781978074,105.738171170022,0.096719311817048,44.2325483249186 +00:00:29.8024,69.8769344420104,36.2041751516655,106.482868093134,0.0973261171632359,44.2914898884301 +00:00:29.8196,69.8766455689891,36.3475819221474,106.904652712198,0.0976064520166866,44.3506940531118 +00:00:29.8417,69.8762747039907,36.3840455201267,107.011898588608,0.0975304666965626,44.4265933174363 +00:00:29.8637,69.8759038288393,36.3322164828581,106.8594602437,0.0971951328662302,44.5023526262809 +00:00:29.8857,69.8755333686351,36.2825989087132,106.713526202098,0.0968677026474861,44.5778771130994 +00:00:29.9078,69.8751630664781,36.2908387968798,106.737761167293,0.096711408699331,44.6532251991453 +00:00:29.9360,69.8746878199692,36.386938738678,107.020408054935,0.0967625018711751,44.7497363103423 +00:00:29.9707,69.8741026756693,36.5508450795309,107.502485528032,0.0969589099265193,44.8682911145111 +00:00:30.0000,69.8736063394108,36.6719765018098,107.858754417088,0.0970729979208861,44.9686193408362 +00:00:30.0012,69.8735848672672,36.6688811151782,107.849650338759,0.0970536218867595,44.972954827535 +00:00:30.0025,69.8735634022225,36.6482609020141,107.789002652983,0.0969831452800808,44.9772882719114 +00:00:30.0041,69.8735351480771,36.5843842791987,107.601130232937,0.0967832527783535,44.9829909190229 +00:00:30.0058,69.873506960153,36.477107509262,107.285610321359,0.096456789309209,44.9886780328544 +00:00:30.0075,69.873478870694,36.3282798523714,106.847881918739,0.0960090747833673,44.9943424378425 +00:00:30.0100,69.8734361809121,36.0296599189212,105.969587996827,0.0951168806409262,45.0029439148643 +00:00:30.0159,69.8733388903627,35.0791812238574,103.17406242311,0.0922912818444565,45.0225017021013 +00:00:30.0219,69.8732445700147,33.8534874098501,99.5690806172062,0.0886518716115088,45.0413861971654 +00:00:30.0278,69.8731537804964,32.471940836636,95.5057083430469,0.0845422356115694,45.0594699245691 +00:00:30.0337,69.8730668088096,31.0421608949478,91.3004732204348,0.0802755117781536,45.0766857691111 +00:00:30.0396,69.8729836720413,29.6551938852201,87.2211584859416,0.0761205811998035,45.0930269338778 +00:00:30.0455,69.872904160083,28.383824557625,83.4818369341911,0.0722962495860133,45.1085381720801 +00:00:30.0514,69.8728278874087,27.2821000789855,80.2414708205455,0.0689683125235322,45.123304762422 +00:00:30.0574,69.8727543448343,26.3857241486136,77.605071025334,0.0662490024765258,45.1374411595346 +00:00:30.0649,69.8726628979328,25.5637734697561,75.1875690286945,0.0637414503061211,45.1549007502797 +00:00:30.0725,69.8725736966199,25.1081246735331,73.8474255103915,0.0623363128815196,45.1718359161441 +00:00:30.0801,69.8724855199249,24.9902432141121,73.5007153356237,0.0619510090992182,45.1885272968406 +00:00:30.0877,69.8723972766786,25.1581861678071,73.9946651994326,0.0624286613354146,45.2052260958689 +00:00:30.0953,69.8723080821663,25.5447563259733,75.1316362528626,0.0635642131639302,45.2221357265862 +00:00:30.1029,69.8722172979809,26.0759789522694,76.6940557419688,0.0651318225146755,45.2394023062055 +00:00:30.1105,69.8721245425162,26.6787177496242,78.4668169106594,0.0669092392591388,45.2571123162369 +00:00:30.1181,69.8720296773345,27.2868959386359,80.2555762901055,0.0686972020097958,45.2752960828796 +00:00:30.1257,69.8719327748008,27.8460503579375,81.900148111581,0.0703330476882972,45.2939356409287 +00:00:30.1333,69.8718340729174,28.3161018584393,83.2826525248214,0.0716984394177994,45.3129754510909 +00:00:30.1431,69.8717043428272,28.753094394579,84.5679246899384,0.0729505989073524,45.3380555417912 +00:00:30.1561,69.8715309304809,29.0271456305892,85.3739577370272,0.0736993191041656,45.3716233690553 +00:00:30.1691,69.8713567424998,29.0025302738359,85.3015596289292,0.0735601810898008,45.4053370816816 +00:00:30.1821,69.871183247844,28.7735241682999,84.6280122597056,0.0728151010134407,45.4388637844145 +00:00:30.1950,69.8710113282093,28.4543432944372,83.689244983639,0.0718034036313346,45.4720041424777 +00:00:30.2080,69.8708412301557,28.1483069556486,82.7891381048487,0.0708317968026997,45.5047028042742 +00:00:30.2210,69.8706726832679,27.9270102155696,82.1382653399106,0.0701129439266655,45.5370215434158 +00:00:30.2340,69.8705051061899,27.8226172491749,81.8312272034555,0.0697422467263498,45.5690925365196 +00:00:30.2519,69.8702745118199,27.8515623608589,81.916359884879,0.0697451659409256,45.6131692758804 +00:00:30.2697,69.8700432011088,28.0103060441243,82.3832530709537,0.0701326617845432,45.6573554729595 +00:00:30.2876,69.8698105109922,28.2055992821856,82.9576449476046,0.0706269744641838,45.7018005629975 +00:00:30.3055,69.8695764255893,28.362078929018,83.4178792029942,0.071004895853182,45.7465073433673 +00:00:30.3234,69.8693413735183,28.4440145619797,83.6588663587639,0.071161572569496,45.791378442429 +00:00:30.3474,69.8690251170068,28.4545345021365,83.6898073592249,0.0710779207219885,45.8516833527188 +00:00:30.3714,69.8687089581921,28.4128020723248,83.5670649186024,0.0708407018106475,45.9118693444623 +00:00:30.3955,69.8683931069344,28.3846771195422,83.4843444692416,0.0706443264641967,45.9718896263447 +00:00:30.4195,69.8680772791303,28.4027445440783,83.5374839531714,0.0705843670567428,46.03180842597 +00:00:30.4527,69.8676401421045,28.4835620575197,83.7751825221168,0.0706656268879896,46.1146107015497 +00:00:30.4859,69.8672017530858,28.5773140401749,84.0509236475733,0.0707842600278733,46.1975100445135 +00:00:30.5000,69.8670151343833,28.6115387211856,84.1515844740753,0.0708180521070635,46.232757945077 +00:00:30.5293,69.8666258083038,28.6350755681336,84.2208104945106,0.0707486026714239,46.3061981807042 +00:00:30.5647,69.866156982549,28.6373921507178,84.2276239726996,0.070589532100534,46.3944536915354 +00:00:30.6001,69.8656877986244,28.6662333942345,84.3124511595133,0.0705084563584601,46.4825822115759 +00:00:30.6354,69.8652178105172,28.7332195925316,84.5094693897988,0.0705386073391119,46.5706832124099 +00:00:30.6881,69.8645160600878,28.8443337269299,84.8362756674408,0.0706160584394151,46.7019198873189 +00:00:30.7407,69.8638119692543,28.9343542328349,85.1010418612792,0.0706317808407198,46.833218609528 +00:00:30.8056,69.8629419828097,29.026485828996,85.372017144106,0.0705967591278207,46.9949217804386 +00:00:30.8940,69.8617515581264,29.1635885308609,85.7752603848851,0.070582234753396,47.2152400988328 +00:00:30.9940,69.860397484047,29.3296737241536,86.2637462475107,0.0705966597663135,47.4645475064285 +00:00:31.0000,69.8603160622042,29.3399348781266,86.2939261121372,0.0705983572280704,47.4794951045806 +00:00:31.0454,69.8596982872699,29.3362879809344,86.2831999439248,0.0703791694758479,47.5927142732276 +00:00:31.0798,69.8592323324976,29.3299382248159,86.264524190635,0.07020451256121,47.6778903457894 +00:00:31.1141,69.8587660026414,29.3728813446333,86.3908274842154,0.0701706846972646,47.7629583960785 +00:00:31.1569,69.8581826491774,29.4709340295042,86.6792177338359,0.0702546070909641,47.8691564033811 +00:00:31.1997,69.8575975160089,29.5646798300551,86.9549406766325,0.0703257093541157,47.9754452383865 +00:00:31.2425,69.8570108468846,29.6311596807431,87.1504696492443,0.0703193052650771,48.0817717783615 +00:00:31.3097,69.8560875339891,29.7225067029413,87.4191373615919,0.0702725771968039,48.2486042449008 +00:00:31.3769,69.8551610527926,29.8273007621359,87.7273551827528,0.0702637005292309,48.4153959173162 +00:00:31.4655,69.8539350854398,29.976851055392,88.1672089864472,0.0702837154988685,48.6351818382151 +00:00:31.5000,69.8534564526535,30.034354646008,88.3363371941413,0.070289402328412,48.7207074805061 +00:00:31.5352,69.8529663677586,29.9966070879579,88.2253149645821,0.0700261996119068,48.8080850761082 +00:00:31.5606,69.8526137916191,29.9472299428008,88.0800880670611,0.069775663104886,48.8708105364091 +00:00:31.5860,69.8522614738468,29.9399979725749,88.0588175663966,0.0696431415383588,48.9333799520781 +00:00:31.6115,69.8519089110603,29.987166666588,88.1975490193766,0.0696621235935116,48.9959005048521 +00:00:31.6467,69.8514182314997,30.088735694027,88.4962814530206,0.0697882628443585,49.0827875254951 +00:00:31.6820,69.8509261047672,30.1772402700197,88.7565890294697,0.0698775273543677,49.1697864451897 +00:00:31.7173,69.8504328554929,30.2307489084047,88.913967377661,0.069869611188558,49.256828246573 +00:00:31.7738,69.8496410132123,30.2963415240045,89.1068868353075,0.0698014374406753,49.3962118517519 +00:00:31.8303,69.8488471083931,30.3782166030923,89.3476958914478,0.0697783152153478,49.5355324171218 +00:00:31.8869,69.8480508193451,30.4779581891503,89.6410534975008,0.0698041208604607,49.6748572374041 +00:00:31.9807,69.8467235064403,30.6345708402479,90.1016789419057,0.069821687984965,49.9061876831741 +00:00:32.0000,69.8464502352614,30.6646309902633,90.1900911478332,0.0698195104944341,49.9536748792902 +00:00:32.0218,69.8461406258379,30.6282418963949,90.0830644011614,0.0696251091598653,50.0074041914092 +00:00:32.0392,69.8458937647454,30.5593447708423,89.880425796595,0.0693617814862554,50.0501781166243 +00:00:32.0566,69.8456473914429,30.4976762220503,89.6990477119127,0.0691187284761228,50.0928042993192 +00:00:32.0792,69.8453288109065,30.4746272874816,89.631256727887,0.0689593192126281,50.147841360689 +00:00:32.1074,69.8449303481235,30.5300894244544,89.7943806601601,0.0689895844825271,50.2165790103518 +00:00:32.1356,69.8445309431315,30.6296062108304,90.0870770906778,0.0691391514798331,50.2853916635146 +00:00:32.1638,69.844130396202,30.7174334499255,90.3453924997809,0.0692563888316343,50.3543203327639 +00:00:32.1920,69.8437289697442,30.768837083447,90.4965796571971,0.0692745876397559,50.4233103875451 +00:00:32.2356,69.8431083624258,30.8110169944298,90.620638218911,0.0692021693719159,50.5297654878789 +00:00:32.2791,69.8424867505584,30.8573249986473,90.7568382313157,0.0691411868391119,50.6361413220355 +00:00:32.3227,69.8418639002475,30.9290014932055,90.9676514506045,0.0691486490004397,50.7424860825168 +00:00:32.3934,69.8408483087396,31.0562935536284,91.3420398636129,0.0691893329947095,50.9153890784346 +00:00:32.4793,69.8396110434596,31.1940889493396,91.7473204392342,0.0691934297522114,51.1251974822635 +00:00:32.5000,69.8393129005391,31.2239997524467,91.8352933895492,0.0691857920631344,51.1756182333414 +00:00:32.5163,69.8390772052763,31.191043203501,91.7383623632382,0.0690288180184026,51.2154312332986 +00:00:32.5326,69.8388419520385,31.1060644912248,91.4884249741907,0.0687335214234772,51.2551146401258 +00:00:32.5489,69.8386073277528,31.0143765741644,91.2187546298952,0.0684209482371264,51.2946307141675 +00:00:32.5694,69.8383134307172,30.9504618153771,91.0307700452267,0.0681657315620903,51.3440504869267 +00:00:32.5899,69.8380197704287,30.9603006645143,91.0597078368068,0.0681074212930393,51.3933608077712 +00:00:32.6201,69.8375851907013,31.059684117016,91.3520121088706,0.068246909814805,51.4662495959167 +00:00:32.6504,69.8371492023622,31.1789065775015,91.7026664044161,0.0684383542572117,51.5392902222576 +00:00:32.6807,69.8367119330578,31.2559500643048,91.929264895014,0.0685172057315062,51.6124562894141 +00:00:32.7109,69.8362739077626,31.2864489401058,92.0189674708993,0.0684725628842905,51.6856412672527 +00:00:32.7541,69.8356476793043,31.3161555290229,92.1063397912438,0.0683724875696834,51.7900624043355 +00:00:32.7973,69.8350204894708,31.3716637594434,92.2695992924807,0.0683408566703222,51.894405003256 +00:00:32.8406,69.8343919339045,31.4528721748425,92.5084475730662,0.0683768864407787,51.9987504704573 +00:00:32.9070,69.8334227798298,31.5711693210093,92.8563803559098,0.0684145380337033,52.159211783795 +00:00:32.9734,69.8324503320858,31.6713383027844,93.1509950081895,0.0684042444706505,52.3196920418951 +00:00:33.0000,69.8320612275044,31.7080612940073,93.2590038059038,0.0683915465132161,52.3837563399386 +00:00:33.0153,69.8318363597259,31.6677292496426,93.1403801460077,0.0682234559459348,52.4207315191387 +00:00:33.0279,69.8316520338583,31.5855859012792,92.8987820625859,0.0679576590074597,52.4510029173999 +00:00:33.0405,69.8314682116343,31.4879728258786,92.611684781996,0.0676518751575211,52.481151279748 +00:00:33.0586,69.8312036793321,31.3811192481294,92.2974095533217,0.0673001093494062,52.5244681942635 +00:00:33.0768,69.8309397293382,31.3423386631827,92.1833490093609,0.0671266345435679,52.5676225775557 +00:00:33.1009,69.830589416814,31.3909620557842,92.3263589876004,0.067157754364379,52.6248285489847 +00:00:33.1250,69.8302382897415,31.4995849561611,92.6458381063561,0.0673448437139274,52.6821147789899 +00:00:33.1492,69.8298860523166,31.604077309427,92.9531685571383,0.0675205141212363,52.7395396955091 +00:00:33.1733,69.8295329154697,31.6676273704664,93.1400805013717,0.0675892720269267,52.7970610641227 +00:00:33.2060,69.8290531253259,31.6976061667095,93.2282534314984,0.0675364018101792,52.8751057562503 +00:00:33.2461,69.828463950816,31.7167159625722,93.2844587134476,0.0674260582126883,52.9707565797698 +00:00:33.2863,69.8278740523548,31.7639828306232,93.4234789135976,0.0673889239675427,53.0663240690195 +00:00:33.3264,69.8272830100032,31.8400897506746,93.6473227961016,0.0674262625606098,53.161891137095 +00:00:33.3878,69.8263768922741,31.9523366329232,93.9774606850681,0.0674722532016682,53.3080578703548 +00:00:33.4491,69.8254679539921,32.0441250624208,94.247426654179,0.0674652237611669,53.4542516019014 +00:00:33.5000,69.82471322919,32.1142017177185,94.453534463878,0.0674440736568518,53.5753116016861 +00:00:33.5116,69.8245399506335,32.0844490244622,94.3660265425357,0.0673218796197363,53.6030583547273 +00:00:33.5233,69.8243669847225,32.0006485173579,94.1195544628174,0.067061520133353,53.6307251420615 +00:00:33.5349,69.8241945298293,31.8891764899422,93.7916955586535,0.0667306867994968,53.6582733420306 +00:00:33.5494,69.8239817890587,31.7620326637007,93.4177431285315,0.0663494783791435,53.6922036262166 +00:00:33.5671,69.8237212567104,31.6691889285619,93.1446733192998,0.0660440109776599,53.7336868454273 +00:00:33.5849,69.8234611252293,31.6610385649257,93.1207016615463,0.0659556651575104,53.7750493800297 +00:00:33.6111,69.8230763804053,31.7552489887961,93.3977911435179,0.0660967187667126,53.8361690067182 +00:00:33.6373,69.8226903512722,31.890782036861,93.7964177554734,0.0663425649636722,53.8974462815908 +00:00:33.6635,69.8223029993542,31.9900910262086,94.0885030182606,0.0664952429275066,53.9588881722266 +00:00:33.6897,69.8219148256554,32.0297769355464,94.2052262810187,0.0664957054320967,54.0203968626877 +00:00:33.7311,69.8212998665177,32.0428015123605,94.2435338598837,0.0663699922365048,54.1176697404925 +00:00:33.7726,69.8206843535421,32.0699342369795,94.3233359911163,0.0662805876116566,54.2148178127076 +00:00:33.8141,69.8200678510988,32.139552041034,94.5280942383354,0.0662990482429601,54.3119256051924 +00:00:33.8756,69.8191509889539,32.2579190409338,94.8762324733348,0.0663642246616356,54.4560107520776 +00:00:33.9371,69.818231213369,32.354646880459,95.1607261189969,0.0663742599460538,54.6001488542846 +00:00:34.0000,69.8172881132002,32.438669784188,95.4078523064352,0.066346886052054,54.7475113040155 +00:00:34.0103,69.8171322299912,32.4083980048717,95.3188176613873,0.0662314743794094,54.7718219033582 +00:00:34.0207,69.8169766302869,32.3237714595284,95.0699160574366,0.0659797052027439,54.7960637710278 +00:00:34.0311,69.8168215042276,32.2065075500745,94.7250222061014,0.0656462632990163,54.8202005647344 +00:00:34.0438,69.8166322508312,32.0622914352036,94.3008571623635,0.0652368597439674,54.8496009905172 +00:00:34.0601,69.8163916623795,31.9293293913406,93.9097923274724,0.0648433618116976,54.8869093920576 +00:00:34.0763,69.8161517417612,31.8787861818561,93.7611358289887,0.0646573519178658,54.9240558123383 +00:00:34.0993,69.8158125468323,31.9307555398831,93.9139868820092,0.0647043399934625,54.976517053927 +00:00:34.1222,69.8154724677081,32.0590696120373,94.2913812118745,0.0649422995738355,55.0290795974074 +00:00:34.1452,69.8151311378007,32.1837846245596,94.6581900722341,0.0651704729264433,55.0818131344163 +00:00:34.1681,69.8147888006192,32.2575437540623,94.8751286884186,0.0652706039494174,55.1346707409176 +00:00:34.1968,69.8143611920696,32.2807514469272,94.9433866086095,0.0652234124310822,55.2006214196294 +00:00:34.2321,69.8138336672204,32.2775077879425,94.9338464351251,0.0650860160706711,55.2818447658079 +00:00:34.2674,69.8133058716316,32.2995694355917,94.9987336340932,0.0650121125328992,55.3629586649823 +00:00:34.3027,69.8127773706752,32.3612240594484,95.1800707630836,0.065036854755914,55.4440458828017 +00:00:34.3598,69.811920533582,32.4733981151941,95.5099944564532,0.0651074068260942,55.575250513966 +00:00:34.4168,69.811061176255,32.5623925771942,95.7717428741007,0.0651199967168921,55.7065127619375 +00:00:34.4739,69.8101996772194,32.6342995270023,95.9832339029479,0.0650901737831084,55.8377606604517 +00:00:34.5000,69.8098063254859,32.6674270053003,96.0806676626478,0.0650774546137694,55.8975724202113 +00:00:34.5098,69.8096573022102,32.6359073020607,95.9879626531196,0.0649639470052623,55.9202090873916 +00:00:34.5197,69.8095085624158,32.5463722967713,95.7246244022684,0.064707507680881,55.9427799961498 +00:00:34.5295,69.8093603051912,32.4195514167001,95.3516218138238,0.064359387577649,55.9652477659315 +00:00:34.5394,69.8092126308599,32.2844700746709,94.9543237490321,0.0639912252994654,55.9875936254963 +00:00:34.5538,69.808997440119,32.1228543072392,94.4789832565858,0.0635419649728817,56.0200986467747 +00:00:34.5713,69.8087379599742,32.0213784629879,94.1805248911408,0.0632310428546054,56.0592217003072 +00:00:34.5926,69.8084216249813,32.0377099835543,94.2285587751596,0.063197562638162,56.1068524177031 +00:00:34.6139,69.8081046946851,32.1537420512655,94.5698295625457,0.0634094279138931,56.1545393140852 +00:00:34.6353,69.807786599002,32.2912864892536,94.9743720272164,0.0636735259904348,56.2023891779275 +00:00:34.6566,69.8074673923293,32.3905297597102,95.2662639991477,0.0638428058821029,56.2503913930107 +00:00:34.6779,69.8071475028722,32.4316955499636,95.3873398528343,0.0638691337172752,56.2984653826238 +00:00:34.7135,69.8066129831168,32.4326574146693,95.3901688666745,0.0637469257870646,56.3786811881792 +00:00:34.7491,69.8060783404394,32.4289679970247,95.379317638308,0.0636137875211235,56.458763719567 +00:00:34.7847,69.8055432959778,32.4704477421054,95.5013168885452,0.0635914902660239,56.5387653499553 +00:00:34.8283,69.804887319676,32.5594787261185,95.7631727238779,0.0636575835229045,56.6366851787013 +00:00:34.8719,69.8042297220792,32.6425417497743,96.0074757346302,0.0637087149601498,56.734673816262 +00:00:34.9250,69.8034266563614,32.7136936148707,96.2167459260903,0.0636975342712751,56.8540913141313 +00:00:35.0000,69.8022893684729,32.8066087739969,96.4900258058732,0.0636632422092897,57.0227273856623 +00:00:35.0081,69.8021658839781,32.7812351064067,96.4153973717844,0.0635735911022449,57.0410007664265 +00:00:35.0162,69.8020425957845,32.7065641621476,96.1957769474928,0.0633645436654203,57.0592297767149 +00:00:35.0244,69.801919654084,32.5945760953598,95.8664002804701,0.0630652237590272,57.0773866883812 +00:00:35.0343,69.8017704251719,32.4387745560405,95.4081604589427,0.0626539117819,57.099392526541 +00:00:35.0484,69.8015585923269,32.2369332121922,94.814509447624,0.0621172199352387,57.1305670122736 +00:00:35.0626,69.8013478415959,32.0988842434359,94.4084830689292,0.0617357806429439,57.1615178591014 +00:00:35.0797,69.8010939778359,32.0454277087498,94.2512579669112,0.0615501408265271,57.1987419252764 +00:00:35.1033,69.8007426153486,32.1271671214953,94.4916680043979,0.0616705892671029,57.2502143969227 +00:00:35.1269,69.8003900273305,32.2901520794221,94.9710355277121,0.0619870024667866,57.3018481339537 +00:00:35.1506,69.8000359050411,32.4302325584744,95.3830369366894,0.0622471116810661,57.353699590734 +00:00:35.1742,69.7996807039445,32.4963562850134,95.5775184853335,0.0623280511818764,57.4056843263816 +00:00:35.2029,69.7992499944468,32.497341831417,95.5804171512265,0.0622351858438216,57.468648996136 +00:00:35.2315,69.7988193287828,32.4749068116437,95.5144317989521,0.0620862175117257,57.531509539514 +00:00:35.2601,69.7983886898985,32.4816603203767,95.5342950599315,0.0620078823679195,57.5942693219409 +00:00:35.2888,69.79795768876,32.5283330461885,95.6715677829074,0.0620256623294771,57.6569999252943 +00:00:35.3363,69.797240479604,32.6279371166556,95.9645209313399,0.0621079474048921,57.7612355349395 +00:00:35.3839,69.7965214234578,32.707971000192,96.1999147064469,0.0621428541612567,57.8655456634561 +00:00:35.4314,69.7958009065282,32.7621252385573,96.3591918781096,0.0621156486319554,57.9698593804122 +00:00:35.5000,69.7947599336781,32.8437230733387,96.5991855098196,0.0620848937235193,58.1201890743698 +00:00:35.5071,69.7946507222072,32.8218197288045,96.5347639082486,0.0620090539538017,58.1359324675935 +00:00:35.5143,69.7945416654858,32.7545950744896,96.337044336734,0.0618252243813664,58.1516417303298 +00:00:35.5215,69.7944328910679,32.6501584770112,96.0298778735624,0.061552805476984,58.1672936906656 +00:00:35.5303,69.7943007706897,32.4976706657201,95.5813843109416,0.0611609142354865,58.1862773573008 +00:00:35.5436,69.7941002468381,32.2695458023618,94.9104288304758,0.0605742992772282,58.2150284052182 +00:00:35.5570,69.7939009488314,32.0912133198036,94.3859215288342,0.0601070205488337,58.2435364743337 +00:00:35.5704,69.7937024822971,31.9951080352565,94.1032589272251,0.0598362967964262,58.2718735490215 +00:00:35.5890,69.7934260686357,31.9966397533836,94.1077639805401,0.0597822689778948,58.3112933389158 +00:00:35.6077,69.7931492161469,32.1064745271079,94.4308074326704,0.0599861346540161,58.3507547903131 +00:00:35.6263,69.7928713284193,32.2526684798471,94.8607896466091,0.0602759621888895,58.3903660522918 +00:00:35.6450,69.7925923392036,32.3738313302951,95.2171509714561,0.0605055936471489,58.4301388093061 +00:00:35.6637,69.7923125629211,32.4394254207416,95.4100747668869,0.0606027395883401,58.4700157272012 +00:00:35.6903,69.7919116433946,32.4520889637602,95.4473204816476,0.0605487771687465,58.5271095643321 +00:00:35.7170,69.7915107407896,32.4247652362132,95.3669565770978,0.0604001896925296,58.5841213167367 +00:00:35.7437,69.7911099950504,32.4141113589304,95.3356216439131,0.060291475540946,58.6410258620166 +00:00:35.7704,69.7907091121806,32.4429501419417,95.4204415939462,0.0602764818655501,58.6978765299951 +00:00:35.8125,69.7900761831662,32.5286089314045,95.6723792100134,0.0603478124018357,58.7875183937815 +00:00:35.8546,69.7894417430888,32.6101655962656,95.9122517537222,0.0604090593591654,58.8772374840561 +00:00:35.8967,69.7888060420078,32.6635404123345,96.0692365068662,0.0604035913386324,58.9669884650421 +00:00:35.9619,69.7878184233385,32.7326608938691,96.2725320407914,0.0603629741284266,59.1061119253765 +00:00:36.0000,69.7872416907281,32.7784415221828,96.4071809475965,0.0603522251370113,59.1871802892035 +00:00:36.0062,69.7871471401477,32.7612321743658,96.356565218723,0.0602924530276924,59.2004568353673 +00:00:36.0124,69.7870527015759,32.7041525939887,96.1886840999666,0.0601391353256385,59.2137090651869 +00:00:36.0186,69.7869584766237,32.6118316749382,95.9171519851125,0.0599031861763252,59.2269187996324 +00:00:36.0263,69.7868431725221,32.4695738592128,95.4987466447436,0.0595457950965382,59.2430618385118 +00:00:36.0390,69.786652845634,32.2207337973831,94.7668641099503,0.0589231684925099,59.2696497567904 +00:00:36.0517,69.7864638565222,32.0037836308863,94.1287753849596,0.0583759721413904,59.2959809741725 +00:00:36.0644,69.7862759019154,31.8609100015311,93.7085588280326,0.0580032088503641,59.3221100415329 +00:00:36.0806,69.7860379474926,31.8049970171922,93.5441088740947,0.0578250009664657,59.3551378268068 +00:00:36.1015,69.7857298286385,31.8898399636962,93.7936469520477,0.0579633864259052,59.3978715283181 +00:00:36.1223,69.7854205777919,32.0591148337537,94.2915142169228,0.0582991784967648,59.4407627457013 +00:00:36.1432,69.7851098603258,32.2144347821498,94.7483375945583,0.0586014125504516,59.4838708803246 +00:00:36.1641,69.7847980270089,32.2998796742394,94.9996461007042,0.05873948369998,59.5271328297055 +00:00:36.1850,69.7844857097643,32.3124039918511,95.0364823289738,0.0587068355868798,59.5704355452931 +00:00:36.2131,69.7840658953288,32.279113027478,94.9385677278765,0.0585460302220335,59.6285666786814 +00:00:36.2412,69.7836463543917,32.2549295055415,94.8674397221809,0.0584069069818245,59.6865669493997 +00:00:36.2693,69.7832267793198,32.2769029995128,94.9320676456258,0.0583757257392539,59.7444913750032 +00:00:36.3067,69.7826670745151,32.353374959235,95.1569851742206,0.0584441239682691,59.8216682393396 +00:00:36.3441,69.7821061285356,32.4320396886821,95.3883520255356,0.058517283994617,59.8989204046906 +00:00:36.3815,69.7815441135272,32.4834740657897,95.5396296052639,0.0585268895036391,59.9762170620554 +00:00:36.4354,69.7807331555378,32.5340648749501,95.6884261027945,0.0584861121066926,60.0875477352543 +00:00:36.5000,69.7797591873833,32.6058304349323,95.8995012792125,0.0584630825222838,60.2209379911058 +00:00:36.5057,69.779672760405,32.5892821983722,95.8508299952125,0.0584080424495501,60.2327564140149 +00:00:36.5114,69.7795864320642,32.5349972798699,95.6911684702056,0.0582657489407807,60.2445540451042 +00:00:36.5171,69.7795002924088,32.4460633005952,95.429597942927,0.0580433827104351,60.2563150074398 +00:00:36.5241,69.7793957367983,32.3073727737544,95.0216846286893,0.0577024245165406,60.2705712004097 +00:00:36.5363,69.779214704057,32.0431185137671,94.2444662169621,0.0570564506230282,60.2951978392935 +00:00:36.5484,69.7790350704791,31.7989265619657,93.5262545940168,0.0564573953172366,60.3195628035887 +00:00:36.5606,69.7788565950099,31.6220251732657,93.005956391958,0.0560145316002055,60.343708850237 +00:00:36.5753,69.7786408525946,31.5258432238994,92.7230683055865,0.0557517760468803,60.3728405772448 +00:00:36.5964,69.7783327982196,31.5746509171621,92.8666203445945,0.0558074696968531,60.4143945060777 +00:00:36.6175,69.7780237601744,31.7467388590139,93.3727613500408,0.0561477247250677,60.4560791206511 +00:00:36.6386,69.7777131315508,31.9262944399546,93.9008659998665,0.0565043171834721,60.4980009950394 +00:00:36.6596,69.7774011584354,32.0369035162419,94.2261868124761,0.0567010617771959,60.5401162973559 +00:00:36.6807,69.7770885227405,32.0624205159878,94.3012368117289,0.0567013204896022,60.5823047031966 +00:00:36.7093,69.7766644807095,32.0258305656383,94.1936193107009,0.0565378030057591,60.6394550103951 +00:00:36.7379,69.7762408120582,31.987583095398,94.0811267511705,0.0563709099068247,60.696459968754 +00:00:36.7665,69.775817250132,31.9989689400973,94.1146145296978,0.056318508168862,60.7533666640062 +00:00:36.7951,69.7753932540908,32.0556482162839,94.2813182831878,0.0563702079567303,60.8102700836926 +00:00:36.8345,69.7748065299234,32.1428005214156,94.5376485923988,0.0564616527581887,60.8889333960611 +00:00:36.8740,69.7742185558819,32.2022426777298,94.7124784639112,0.0564892297449635,60.9676639612601 +00:00:36.9218,69.7735063578477,32.2433871675871,94.833491669374,0.0564520904174825,61.0628711659076 +00:00:36.9865,69.7725397685476,32.3058865430518,95.0173133619171,0.0564173103678716,61.191800883878 +00:00:37.0000,69.7723380135236,32.3217560735181,95.0639884515237,0.0564165488811128,61.2186713295907 +00:00:37.0056,69.7722527601646,32.3034850313138,95.0102500920994,0.0563592408334842,61.230019881991 +00:00:37.0113,69.7721676136724,32.2441309309915,94.8356792087986,0.0562082407118117,61.2413466953233 +00:00:37.0170,69.7720826720409,32.1470475541161,94.5501398650474,0.055971236327644,61.2526347265499 +00:00:37.0227,69.7719980175138,32.0236477733977,94.1871993335226,0.055674282712525,61.2638696784253 +00:00:37.0339,69.7718337388064,31.7577971756768,93.4052858108142,0.0550379374150502,61.2856214198392 +00:00:37.0450,69.7716707844749,31.5002798164757,92.6478818131638,0.0544210093571636,61.3071310366991 +00:00:37.0561,69.7715089955328,31.2962213348425,92.0477098083603,0.0539265076601222,61.3284263673731 +00:00:37.0697,69.7713123826948,31.1541088479554,91.629731905751,0.0535675264946865,61.3542453236576 +00:00:37.0878,69.7710511528596,31.1389701700754,91.5852063825747,0.0534873109434942,61.388498419668 +00:00:37.1059,69.770789515135,31.2634488255026,91.9513200750077,0.0537255319403399,61.4227932129307 +00:00:37.1240,69.7705267001792,31.4397426390127,92.4698312912138,0.0540812647388619,61.4572633547805 +00:00:37.1421,69.770262579951,31.5903500391988,92.9127942329376,0.0543777506926286,61.4919307468154 +00:00:37.1603,69.7699975066799,31.6734892252322,93.1573212506828,0.0545201597349484,61.5267338637278 +00:00:37.1831,69.7696629285789,31.6861253570637,93.1944863443049,0.0544898383061921,61.5706405910665 +00:00:37.2059,69.7693284488297,31.6439091446457,93.0703210136639,0.0543349883584665,61.6144827949153 +00:00:37.2287,69.7689943371434,31.60371886615,92.9521143122059,0.0541850587070659,61.6582138573983 +00:00:37.2515,69.7686604243424,31.5998239730496,92.9406587442634,0.0541177855263365,61.7018632722859 +00:00:37.2822,69.768211550782,31.6485958507682,93.0841054434358,0.0541500118956511,61.7604807752704 +00:00:37.3220,69.7676277189357,31.7359930009989,93.3411558852908,0.0542461571470989,61.8366459309828 +00:00:37.3618,69.7670426056831,31.7999115957254,93.5291517521334,0.0542887996542452,61.9128891850199 +00:00:37.4015,69.7664566079948,31.8332671899553,93.6272564410451,0.0542622197007433,61.9891417965576 +00:00:37.4652,69.7655173081456,31.8860890354575,93.7826148101692,0.0542184926162675,62.111126788 +00:00:37.5000,69.7650044664259,31.9241819167458,93.8946526963112,0.0542156334724167,62.1776068354739 +00:00:37.5048,69.7649330570994,31.9106888186835,93.8549671137749,0.0541728998100728,62.1868558828762 +00:00:37.5096,69.7648617182857,31.8639904065303,93.7176188427362,0.0540554000023723,62.1960907107801 +00:00:37.5144,69.7647905196688,31.7848149164426,93.484749754243,0.0538647991909937,62.2052993527973 +00:00:37.5203,69.7647052209187,31.6582622929933,93.1125361558626,0.0535650917238188,62.2163171585576 +00:00:37.5314,69.7645420841345,31.3729442577373,92.2733654639332,0.0528944929298265,62.2373347226976 +00:00:37.5426,69.764380410862,31.0823176017744,91.4185811816894,0.0522123033160689,62.2580898644603 +00:00:37.5538,69.7642200840719,30.8413162842131,90.7097537770973,0.0516423344016498,62.2786028519685 +00:00:37.5650,69.7640607770058,30.6826624367116,90.2431248138576,0.0512583468925317,62.2989300148663 +00:00:37.5800,69.7638477307387,30.6104592821406,90.0307625945311,0.0510605958929963,62.3260642928501 +00:00:37.5983,69.7635877096396,30.690978684477,90.2675843661088,0.0511993857979862,62.3591587489153 +00:00:37.6166,69.7633266719323,30.8694559147391,90.7925173962915,0.0515583148990109,62.3924001241382 +00:00:37.6349,69.7630641994638,31.0500398326207,91.3236465665314,0.0519212070389001,62.42585989068 +00:00:37.6533,69.7628005075752,31.1687117934348,91.6726817453965,0.0521442402983273,62.4595007111703 +00:00:37.6716,69.7625361537548,31.2071809821806,91.7858264181782,0.0521867558775643,62.493226718083 +00:00:37.6984,69.7621487656191,31.1735036367118,91.6867754020935,0.0520469144071163,62.5425985885904 +00:00:37.7252,69.7617618396515,31.1147564385302,91.5139895250889,0.0518511874219795,62.5918306657737 +00:00:37.7521,69.7613752940032,31.0979004492659,91.464413086076,0.0517497751747126,62.6409372178696 +00:00:37.7789,69.7609886118996,31.1355147200383,91.5750432942303,0.0517705534323667,62.6900068023872 +00:00:37.8185,69.7604167751481,31.2235364813552,91.8339308275153,0.0518737443598954,62.7625112008185 +00:00:37.8581,69.7598436326162,31.2920377956979,92.0354052814643,0.0519329039539514,62.8351070383071 +00:00:37.8977,69.7592695929183,31.3248156774441,92.131810816012,0.051912105213592,62.9077243922626 +00:00:37.9632,69.7583198122641,31.37133792837,92.2686409657942,0.0518607961004162,63.0276418123618 +00:00:38.0000,69.7577855288739,31.4070175448411,92.3735810142387,0.0518532802242949,63.0949756909024 +00:00:38.0053,69.7577082180805,31.3873077606483,92.3156110607303,0.0517968395647047,63.104709957022 +00:00:38.0106,69.7576310127757,31.3250272880097,92.1324332000284,0.0516456860890768,63.1144239550923 +00:00:38.0159,69.7575540091892,31.2225325623676,91.8309781246107,0.0514050905017967,63.1241013564759 +00:00:38.0212,69.7574772906258,31.0907493186303,91.4433803489125,0.0510993773401085,63.1337280296214 +00:00:38.0315,69.7573295034305,30.8013309456322,90.5921498400947,0.0504313701070924,63.152220866999 +00:00:38.0419,69.7571830842244,30.5089212859936,89.7321214293931,0.0497569858043153,63.1704728075533 +00:00:38.0522,69.7570379325942,30.2608112907016,89.0023861491222,0.0491815650925435,63.1885010185102 +00:00:38.0625,69.7568937770522,30.0866529171734,88.4901556387453,0.0487711886501329,63.2063517424366 +00:00:38.0766,69.7566973465339,29.9834250371678,88.1865442269642,0.0485109628984961,63.230622753757 +00:00:38.0946,69.7564468880219,30.035781065984,88.3405325470117,0.0485891382410035,63.2615396526124 +00:00:38.1126,69.7561955603716,30.2099370662544,88.8527560772189,0.0489381192482036,63.2925795631546 +00:00:38.1307,69.7559427870407,30.4046397243022,89.4254109538301,0.0493320605625404,63.3238400651073 +00:00:38.1487,69.7556886743481,30.5452045405057,89.8388368838403,0.0496049584903182,63.3553027388452 +00:00:38.1667,69.7554337498837,30.6024865724708,90.0073134484435,0.0496924702155889,63.3868778464434 +00:00:38.1917,69.7550793938898,30.5798066899728,89.9406079116847,0.0495869833963582,63.4307347651647 +00:00:38.2168,69.7547254556151,30.5138015180961,89.7464750532239,0.0493856625279075,63.4744724031908 +00:00:38.2418,69.7543720297766,30.4758316057994,89.6347988405865,0.0492468756437293,63.5180749517864 +00:00:38.2668,69.7540187037381,30.492320836466,89.6832965778413,0.0492289760632497,63.5616123902063 +00:00:38.3026,69.7535124331764,30.5677639194782,89.9051879984652,0.0493180827466672,63.6239468238117 +00:00:38.3384,69.7530050364003,30.6423440465053,90.1245413132508,0.0494049539068746,63.6863726635892 +00:00:38.3742,69.7524967538076,30.6821015306839,90.2414750902469,0.0494146376165976,63.7488491229903 +00:00:38.4214,69.7518262795339,30.7067614953571,90.3140043981091,0.0493661762286548,63.8311437245484 +00:00:38.4792,69.7510041422312,30.7495905813388,90.4399722980554,0.0493347920993693,63.9318671083501 +00:00:38.5000,69.7507089367375,30.7720185706039,90.5059369723644,0.0493391022669899,63.9679856895844 +00:00:38.5048,69.7506402897027,30.7551855765107,90.4564281662079,0.049291569029107,63.9763798926547 +00:00:38.5096,69.7505717265981,30.6999039807194,90.2938352374101,0.0491594236041249,63.9847582208063 +00:00:38.5144,69.7505033280389,30.6070214099963,90.0206512058714,0.0489445520653423,63.993107142913 +00:00:38.5192,69.7504351663213,30.4853140451382,89.6626883680536,0.0486662777191781,64.001414526651 +00:00:38.5292,69.7502957560885,30.1918038424391,88.7994230659974,0.0479989989531849,64.0183554264537 +00:00:38.5391,69.7501577127292,29.8820080534938,87.8882589808642,0.0472960780431247,64.03505941305 +00:00:38.5490,69.7500209920415,29.6057350331765,87.0756912740485,0.0466672449141246,64.0515339986814 +00:00:38.5589,69.7498853722177,29.396777692434,86.4611108601,0.0461870101377349,64.0678165554262 +00:00:38.5718,69.749711359133,29.2500572042089,86.0295800123793,0.0458385674435232,64.0886494425971 +00:00:38.5899,69.7494659368316,29.2499755141206,86.0293397474136,0.0458032503217546,64.117986224749 +00:00:38.6080,69.7492199048464,29.411423588561,86.5041870251795,0.0461235855940116,64.1474028763171 +00:00:38.6261,69.7489724137548,29.623083053906,87.1267148644295,0.0465537474209396,64.1770418411933 +00:00:38.6442,69.7487234004045,29.7927844910452,87.6258367383682,0.0468908360042112,64.2069133285782 +00:00:38.6623,69.7484733569235,29.8752646365599,87.8684254016469,0.0470357064739524,64.2369344378033 +00:00:38.6804,69.7482229568706,29.8740187116886,87.8647609167311,0.0469965032437783,64.2669920620334 +00:00:38.7032,69.7479086118264,29.8130723267867,87.6855068434903,0.04681702176505,64.3046782310599 +00:00:38.7259,69.7475948396732,29.7507025218153,87.5020662406332,0.0466347374326391,64.342231890697 +00:00:38.7487,69.7472814509491,29.7314889833707,87.4455558334432,0.0465474007710844,64.3796849519627 +00:00:38.7714,69.7469680129793,29.7605456007713,87.5310164728568,0.0465659963335507,64.4171099316387 +00:00:38.8056,69.7464961011588,29.8377375452629,87.7580516037143,0.0466672122449126,64.4734280081776 +00:00:38.8398,69.7460231642968,29.9024417605724,87.9483581193307,0.0467407852982455,64.5298351875161 +00:00:38.8740,69.7455495194828,29.9318844548983,88.0349542791126,0.0467370649119791,64.5862783341262 +00:00:38.9248,69.7448464491494,29.9535017737318,88.0985346286229,0.0466834125067711,64.6699401020752 +00:00:38.9755,69.7441425969948,29.9887990247815,88.2023500728867,0.04665971885034,64.7535515417226 +00:00:39.0000,69.7438027889176,30.0151105962164,88.2797370476954,0.0466685411154955,64.7938696542746 +00:00:39.0038,69.74374875545,30.0045230234496,88.2485971277929,0.0466377514253657,64.8002772527312 +00:00:39.0077,69.7436947677535,29.9663960665629,88.1364590193027,0.0465469566581906,64.8066761832732 +00:00:39.0116,69.7436408744747,29.899453515264,87.9395691625413,0.0463933880199907,64.8130583611103 +00:00:39.0155,69.7435871221366,29.8084587348768,87.67193745552,0.0461874306901189,64.8194160555847 +00:00:39.0235,69.7434776104598,29.5760640980409,86.9884238177675,0.0456653853223557,64.8323363435282 +00:00:39.0343,69.743330638594,29.2174630419784,85.9337148293483,0.0448629174333471,64.8495980873185 +00:00:39.0451,69.7431853927306,28.8718716586183,84.9172695841716,0.044089039695626,64.8665649451015 +00:00:39.0559,69.743041673318,28.5954861580451,84.1043710530739,0.0434664086394396,64.8832702222904 +00:00:39.0667,69.74289907294,28.4193645064376,83.5863661954047,0.0430628697898585,64.899781841093 +00:00:39.0809,69.74271215462,28.3454548869843,83.3689849617186,0.0428766704659141,64.9213743711059 +00:00:39.0951,69.7425252675943,28.4167894864046,83.5787926070723,0.043007497515724,64.9429491845019 +00:00:39.1093,69.7423376728327,28.5742950821888,84.0420443593789,0.0433260010690788,64.9646292242861 +00:00:39.1235,69.7421490119993,28.7538479339112,84.5701409820918,0.0436920581533841,64.9864739230168 +00:00:39.1378,69.7419592951777,28.9041921481114,85.0123298473864,0.0439939615993007,65.008481376495 +00:00:39.1520,69.7417687911284,28.9968308674722,85.2847966690358,0.0441698476037682,65.03060672682 +00:00:39.1713,69.7415096838647,29.0283495987847,85.377498819955,0.0442032934779418,65.060705018442 +00:00:39.1949,69.7411925662655,28.9767658682436,85.2257819654223,0.0440481612858813,65.0975044110045 +00:00:39.2185,69.7408760436494,28.902500734617,85.0073551018146,0.0438440140188933,65.1341694210608 +00:00:39.2422,69.7405600550861,28.8664296155011,84.9012635750032,0.0437231814157842,65.1707103542589 +00:00:39.2658,69.740244152433,28.8849616033865,84.9557694217249,0.0437211049104438,65.207201647754 +00:00:39.3024,69.7397540389493,28.9620598379194,85.182528935057,0.0438228021663607,65.2637874041452 +00:00:39.3390,69.7392628086885,29.0319898439337,85.3882054233343,0.0439086330861747,65.3204729982705 +00:00:39.3756,69.7387707866377,29.0625329352472,85.4780380448448,0.043908919756674,65.3772044586128 +00:00:39.4233,69.7381283537873,29.0773294875201,85.5215573162357,0.0438550899367364,65.4511775535954 +00:00:39.4710,69.7374853509488,29.1043490370471,85.6010265795502,0.0438277987361695,65.5251000993936 +00:00:39.5000,69.7370956166318,29.1325705075923,85.6840309046832,0.0438369033370749,65.5698540005496 +00:00:39.5036,69.7370465088658,29.1226257912374,85.6547817389336,0.043808892989431,65.5754898645405 +00:00:39.5072,69.7369974412371,29.0868635785157,85.5495987603404,0.0437251351460174,65.5811182767491 +00:00:39.5109,69.7369484570094,29.0235715676908,85.363445787326,0.043581941563673,65.5867321114412 +00:00:39.5145,69.7368995982404,28.9368091024635,85.1082620660692,0.0433880816975484,65.5923244424027 +00:00:39.5217,69.736803792793,28.720861573996,84.4731222764588,0.0429089891030235,65.6032619751911 +00:00:39.5321,69.7366669269314,28.3572417682584,83.4036522595835,0.0421054358412308,65.6188110010514 +00:00:39.5424,69.7365317756225,27.9928625202115,82.3319485888573,0.0413003810305655,65.6340709093827 +00:00:39.5528,69.7363982052607,27.6859699301355,81.4293233239278,0.0406198026823275,65.6490638014767 +00:00:39.5631,69.7362658691782,27.4721921028765,80.8005650084604,0.0401408577089227,65.6638469476322 +00:00:39.5762,69.7360999694813,27.350960238364,80.4440007010705,0.0398581245955858,65.6823187852741 +00:00:39.5921,69.7358979150827,27.3906562704738,80.5607537366877,0.0399191994559972,65.7047887749121 +00:00:39.6081,69.7356951437067,27.5617278186096,81.0639053488517,0.0402641168465632,65.7273629915914 +00:00:39.6240,69.7354910403452,27.771912386412,81.682095254153,0.0406929571757706,65.75014264359 +00:00:39.6399,69.7352855733287,27.9457332075074,82.1933329632571,0.0410426186719848,65.7731326500159 +00:00:39.6559,69.7350791279939,28.0428125539,82.478860452647,0.0412262062005714,65.7962692764929 +00:00:39.6752,69.7348284268339,28.0578452003621,82.5230741187122,0.0412271195363771,65.8243715396357 +00:00:39.6945,69.7345778681056,28.0013421847435,82.3568887786574,0.0410738500671073,65.8524289436703 +00:00:39.7138,69.7343278326179,27.9284307998195,82.1424435288809,0.0408854309578373,65.8803789311546 +00:00:39.7331,69.734078294412,27.8818472051432,82.0054329563035,0.0407539781121839,65.9082259019331 +00:00:39.7524,69.7338289707367,27.8784520719036,81.9954472703047,0.0407157078275582,65.9360164446961 +00:00:39.7838,69.7334240129092,27.93269022449,82.1549712485,0.0407822478996149,65.9811307330809 +00:00:39.8151,69.7330182260819,28.0046595903374,82.3666458539336,0.0408867248099873,66.026325411518 +00:00:39.8465,69.7326116670255,28.0491106792829,82.497384350832,0.0409318084878637,66.071590989972 +00:00:39.8778,69.732204695111,28.0617064405432,82.5344307074801,0.0409083736876757,66.1168684181796 +00:00:39.9269,69.7315670446635,28.0727509996171,82.5669147047561,0.0408531336982007,66.1877143463754 +00:00:39.9759,69.7309288280906,28.1033944336987,82.6570424520549,0.0408400191399278,66.2585161976333 +00:00:40.0000,69.7306162974811,28.1274717641821,82.7278581299473,0.0408530634551037,66.2931528252214 +00:00:40.0033,69.7305725758837,28.1186894311916,82.7020277387987,0.0408288568271528,66.29799613477 +00:00:40.0067,69.7305288874246,28.0864805431662,82.6072957151948,0.0407544707949443,66.3028333899691 +00:00:40.0100,69.7304852688559,28.0287493086749,82.4374979666909,0.0406254229173573,66.3076585860186 +00:00:40.0134,69.7304417565607,27.9487336330556,82.2021577442813,0.040448651222259,66.3124657788794 +00:00:40.0197,69.7303597209582,27.7545846896989,81.631131440291,0.0400226183076207,66.3215054063901 +00:00:40.0298,69.7302320496439,27.3882915699546,80.5537987351605,0.0392220628130754,66.3354994997079 +00:00:40.0398,69.730106083761,27.0059041051355,79.4291297209868,0.0383870711735527,66.3492092995229 +00:00:40.0498,69.729981755234,26.6683628729443,78.4363613910127,0.0376483666704948,66.3626459824569 +00:00:40.0598,69.7298587759983,26.416062057464,77.6943001690116,0.0370927356989229,66.3758567463922 +00:00:40.0719,69.7297108090464,26.2485721662352,77.2016828418682,0.0367164057060513,66.3916804358228 +00:00:40.0879,69.7295165906188,26.2353979844054,77.1629352482512,0.0366662527469236,66.4124045592478 +00:00:40.1038,69.729321911548,26.3876956968981,77.610869696759,0.0369710831817866,66.4331916829925 +00:00:40.1198,69.7291259379845,26.6075045552386,78.2573663389371,0.0374201684504794,66.4541781021967 +00:00:40.1358,69.7289284792523,26.8067380276757,78.8433471402227,0.037824477893834,66.4753947120994 +00:00:40.1518,69.728729854404,26.93136921348,79.2099094514116,0.0380684729374784,66.4967890706251 +00:00:40.1677,69.7285306319106,26.9681296906101,79.3180285017944,0.0381241009861907,66.5182681123205 +00:00:40.1894,69.7282605092374,26.9214595435635,79.1807633634222,0.0379929859036994,66.5473670000291 +00:00:40.2111,69.7279909849739,26.8334860233781,78.9220177158178,0.0377737333992621,66.5763444189152 +00:00:40.2327,69.7277221472928,26.7704682838628,78.7366714231259,0.0376081355468961,66.6051861409759 +00:00:40.2544,69.7274536455593,26.7617440002186,78.7110117653488,0.0375588067509817,66.6339495185824 +00:00:40.2837,69.7270903497864,26.8130475001028,78.861904412067,0.0376269733848566,66.6728471312943 +00:00:40.3130,69.7267263133986,26.8830695763896,79.0678516952636,0.0377349278665142,66.7118224453613 +00:00:40.3422,69.7263615645751,26.9278193807597,79.1994687669403,0.037788731858083,66.750870721139 +00:00:40.3715,69.7259964363553,26.9397725495004,79.2346251455894,0.0377724963207111,66.7899376324236 +00:00:40.4189,69.7254054723204,26.9436908368258,79.2461495200758,0.0377134374247604,66.8530880019743 +00:00:40.4663,69.7248141321342,26.9648112362784,79.3082683419953,0.0376911206662034,66.9161867991771 +00:00:40.5000,69.7243937480256,26.9946316691975,79.3959754976398,0.0377068050023111,66.9609972002422 +00:00:40.5031,69.7243543205869,26.9864600967731,79.3719414610974,0.0376849429845639,66.9651976073974 +00:00:40.5063,69.7243149219839,26.9564187932191,79.2835846859386,0.0376165650265456,66.9693928367642 +00:00:40.5094,69.724275584931,26.9021469983842,79.1239617599534,0.0374966548912103,66.9735775806418 +00:00:40.5126,69.7242363422071,26.8263507171238,78.9010315209522,0.037330969271043,66.9777465211787 +00:00:40.5183,69.7241650636202,26.6477203134166,78.3756479806372,0.0369428823712939,66.9852980954857 +00:00:40.5280,69.7240462055018,26.2792424907485,77.291889678672,0.0361454010689354,66.9978166716068 +00:00:40.5377,69.7239290400901,25.8827330349835,76.1256853970102,0.0352882485984437,67.0100558862286 +00:00:40.5474,69.7238135484087,25.5207221058495,75.0609473701455,0.0345045917452817,67.0220188373071 +00:00:40.5571,69.7236994894655,25.2368776672697,74.2261107860874,0.0338875941949322,67.0337447191609 +00:00:40.5669,69.7235864729298,25.0538373919422,73.6877570351242,0.0334856339601762,67.0452970374153 +00:00:40.5812,69.7234207959247,24.9656904092502,73.4285012036771,0.0332806861012689,67.0621745534881 +00:00:40.5954,69.7232551554833,25.0502915124621,73.6773279778296,0.0334440729062098,67.0790375264242 +00:00:40.6097,69.7230886786015,25.2353445029415,74.2216014792398,0.0338212304011816,67.0960278362841 +00:00:40.6240,69.7229209519983,25.4437862948604,74.8346655731189,0.0342476756110812,67.1132124659585 +00:00:40.6383,69.7227520046813,25.6148759294687,75.3378703807902,0.0345940839342719,67.1305864706868 +00:00:40.6526,69.7225821715445,25.7157008552985,75.6344142802897,0.034790639840195,67.1480952800902 +00:00:40.6713,69.7223602380635,25.7408301195284,75.7083238809657,0.0348205937813423,67.1709920896921 +00:00:40.6899,69.7221384039692,25.6842086686883,75.5417902020245,0.0346767924843226,67.1938573715613 +00:00:40.7086,69.7219171175642,25.6013338078459,75.2980406113113,0.0344773741649507,67.2166184845531 +00:00:40.7272,69.7216964181493,25.5389377871941,75.1145229035121,0.0343216777667483,67.2392691676527 +00:00:40.7458,69.7214760572788,25.5196602732071,75.0578243329619,0.0342577306418051,67.2618497943395 +00:00:40.7734,69.721150475395,25.5551489821268,75.1622028886082,0.034299163192211,67.2951926980492 +00:00:40.8009,69.7208243119007,25.6207160592184,75.3550472329952,0.0344043093027211,67.3285967248776 +00:00:40.8284,69.7204974757845,25.6708105235715,75.5023838928572,0.0344764413371055,67.3620764909998 +00:00:40.8560,69.7201702218701,25.6890716178357,75.5560929936345,0.0344809737946839,67.3955906584938 +00:00:40.9013,69.7196307953974,25.6901184377873,75.5591718758449,0.0344269317611213,67.4507730389122 +00:00:40.9467,69.7190911609868,25.6987611998766,75.5845917643429,0.0343890782433744,67.505898995534 +00:00:40.9921,69.7185510678183,25.7302898713511,75.6773231510328,0.034399672062288,67.5610090628739 +00:00:41.0000,69.7184569592623,25.738048633975,75.700143041103,0.0344063085596056,67.5706060836677 +00:00:41.0031,69.718419665737,25.7291994977027,75.6741161697137,0.03438372577912,67.5744083223128 +00:00:41.0062,69.7183824028352,25.6976233591334,75.5812451739216,0.0343130944225788,67.578205193967 +00:00:41.0093,69.7183452040728,25.640841495456,75.4142396925177,0.0341891777613785,67.5819912935528 +00:00:41.0125,69.7183081031981,25.5616300537937,75.1812648640992,0.034017844473765,67.5857611786679 +00:00:41.0180,69.7182430681432,25.3819478176715,74.6527876990337,0.0336311508899226,67.5923483519772 +00:00:41.0275,69.7181326611644,25.0039810917313,73.5411208580333,0.0328203009908446,67.6034537032059 +00:00:41.0369,69.7180239570519,24.5939258487126,72.3350760256252,0.0319414840136505,67.6142804686462 +00:00:41.0464,69.7179169538932,24.2144584749671,71.2189955146092,0.0311273739830595,67.6248289499016 +00:00:41.0559,69.7178114308943,23.9103246824221,70.3244843600651,0.0304728764991393,67.6351348242777 +00:00:41.0653,69.7177070153263,23.7059973667416,69.7235216668871,0.0300300040383449,67.6452583623253 +00:00:41.0790,69.717557796693,23.5907391694675,69.384526969022,0.0297718734786387,67.659658603898 +00:00:41.0926,69.7174087731031,23.650274414701,69.5596306314734,0.0298843527724294,67.6740206795734 +00:00:41.1062,69.7172590725726,23.8206738162491,70.0608053419092,0.0302315512872995,67.6884855299247 +00:00:41.1198,69.7171082236755,24.0296133789884,70.675333467613,0.0306599284801898,67.7031291998472 +00:00:41.1334,69.7169561639676,24.2158002701994,71.2229419711746,0.0310396403065709,67.7179615744984 +00:00:41.1470,69.7168031399944,24.3410216646507,71.5912401901491,0.0312899768018715,67.7329426584796 +00:00:41.1640,69.7166123661295,24.3972660685378,71.7566649074642,0.0313906649758123,67.7516530646844 +00:00:41.1850,69.7163750113906,24.3549081861812,71.6320829005329,0.0312784147784025,67.7749204184242 +00:00:41.2060,69.7161382549254,24.2588062333362,71.3494300980477,0.0310527465517071,67.7980745155501 +00:00:41.2271,69.715902279152,24.1795583533876,71.1163480981989,0.0308629360574403,67.8210860746893 +00:00:41.2481,69.7156667836412,24.1539398190424,71.0409994677717,0.0307866129386288,67.8440036593464 +00:00:41.2746,69.7153703571752,24.1888151398113,71.1435739406216,0.0308323688677749,67.8728317274135 +00:00:41.3011,69.7150733848782,24.2533517202225,71.333387412419,0.0309406226661294,67.9017215491229 +00:00:41.3276,69.7147757736755,24.3029726100232,71.4793312059507,0.031017227907242,67.9306880067462 +00:00:41.3541,69.7144777687325,24.3204921993438,71.5308594098347,0.0310260291502728,67.959691545506 +00:00:41.3970,69.7139938209966,24.3167691438157,71.5199092465168,0.0309725329807336,68.006744461554 +00:00:41.4400,69.713509800577,24.3176930542911,71.5226266302679,0.0309289270914651,68.0537398490825 +00:00:41.4830,69.7130254844223,24.3421842156243,71.5946594577187,0.0309349784320233,68.100713591095 +00:00:41.5000,69.7128347513084,24.3572239930151,71.6388940971033,0.0309487140526601,68.1192022692822 +00:00:41.5030,69.7128005573897,24.3483412372673,71.6127683449039,0.0309268146637404,68.1225158401993 +00:00:41.5060,69.7127663928147,24.3170279673426,71.5206704921841,0.0308577290795634,68.1258243581738 +00:00:41.5090,69.7127322898872,24.2606432346644,71.3548330431305,0.0307359040400529,68.1291226394093 +00:00:41.5121,69.7126982813054,24.1817652127477,71.1228388610226,0.0305667612339434,68.1324054368561 +00:00:41.5172,69.7126408885278,24.0092702723524,70.6155008010366,0.0301984328736838,68.1379251858487 +00:00:41.5265,69.7125392262744,23.6272000350972,69.4917648091093,0.0293847984223758,68.147622750317 +00:00:41.5357,69.7124392569849,23.2057559045968,68.2522232488143,0.0284881288429393,68.1570453830892 +00:00:41.5449,69.7123410074321,22.807966747115,67.0822551385734,0.0276411636184113,68.1661887532349 +00:00:41.5541,69.7122442882547,22.4801583957997,66.1181129288227,0.0269416735934181,68.1750832864927 +00:00:41.5633,69.7121487536203,22.249339507203,65.4392338447146,0.0264467922340542,68.1837846147385 +00:00:41.5762,69.7120166732824,22.0999097978391,64.9997346995267,0.026120663061715,68.1957347825613 +00:00:41.5891,69.71188497745,22.1246447965808,65.0724846958258,0.0261621192861204,68.2076181656498 +00:00:41.6019,69.7117528128922,22.2703751904877,65.5011035014344,0.0264586869786731,68.219572062727 +00:00:41.6148,69.7116196554339,22.4720310625247,66.0942090074255,0.0268728217284374,68.2316807036366 +00:00:41.6276,69.7114853422174,22.6697923048819,66.6758597202409,0.0272782970370243,68.243970114637 +00:00:41.6405,69.7113500100334,22.8211218888554,67.1209467319276,0.027585572953339,68.256418136819 +00:00:41.6533,69.7112139818572,22.9057186326258,67.3697606841936,0.0277520880197069,68.2689727455062 +00:00:41.6731,69.7110044345297,22.9183567070342,67.4069314912771,0.0277607834648418,68.2883291120212 +00:00:41.6929,69.7107951372429,22.8410509718263,67.1795616818419,0.0275802698024402,68.3076328937214 +00:00:41.7126,69.7105865671306,22.743727480768,66.8933161199058,0.027357826241668,68.3268075717857 +00:00:41.7324,69.7103786874911,22.6796377722039,66.7048169770704,0.027205490605156,68.3458591529685 +00:00:41.7522,69.7101711392912,22.6689065293961,66.6732544982237,0.0271655064127944,68.3648453492824 +00:00:41.7826,69.7098509041684,22.7197789804779,66.8228793543467,0.027245610179095,68.3941374441725 +00:00:41.8131,69.7095299192643,22.7889685112336,67.0263779742164,0.0273640361717324,68.4235207668461 +00:00:41.8436,69.709208260001,22.8263713178389,67.1363862289379,0.0274155142448956,68.4529830915984 +00:00:41.8740,69.7088863320345,22.827139541747,67.1386457110205,0.0273900201856588,68.4824593352594 +00:00:41.9167,69.7084352232296,22.816154008932,67.1063353203883,0.027329056920565,68.5237110526315 +00:00:41.9594,69.7079840599158,22.824189583182,67.1299693623,0.0273080774751324,68.5649143819292 +00:00:42.0000,69.707555614044,22.8509356852057,67.208634368252,0.0273282509055425,68.6040125172007 +00:00:42.0024,69.7075296594189,22.8455550887412,67.1928090845329,0.0273148010539863,68.6063799024125 +00:00:42.0049,69.7075037196701,22.825027139996,67.1324327646942,0.0272696098287705,68.6087447213624 +00:00:42.0079,69.7074720033529,22.7757591231148,66.9875268326906,0.027163707605212,68.6116325001935 +00:00:42.0109,69.7074403721114,22.702123506711,66.7709514903264,0.027006743527412,68.6145063972994 +00:00:42.0151,69.7073964275007,22.5666451244041,66.372485660012,0.0267191249303866,68.6184844038185 +00:00:42.0238,69.7073054273973,22.2053642014268,65.309894710079,0.0259541524151485,68.6266485336958 +00:00:42.0326,69.7072159951644,21.7872799785303,64.0802352309716,0.0250698845392288,68.6345595404232 +00:00:42.0414,69.7071282264208,21.3736918510363,62.8637995618714,0.0241948422118472,68.6422020749988 +00:00:42.0502,69.7070420146186,21.0122288483771,61.800673083462,0.0234291014085614,68.6495931566353 +00:00:42.0590,69.7069570934779,20.7341432048014,60.9827741317689,0.0228384866947019,68.6567754264796 +00:00:42.0706,69.7068462286598,20.5173791013433,60.3452326510097,0.0223748644860064,68.6660512450276 +00:00:42.0845,69.7067139842921,20.467112074953,60.197388455744,0.0222598310841433,68.6770483135396 +00:00:42.0984,69.7065815378501,20.5920713930471,60.5649158619033,0.0225131194389131,68.6880731624794 +00:00:42.1124,69.7064480389275,20.8118569394761,61.2113439396356,0.0229653342093948,68.699262042782 +00:00:42.1263,69.7063131314518,21.0451872639789,61.8976095999379,0.0234454773432331,68.7106718319899 +00:00:42.1402,69.706176909409,21.2301768220226,62.4416965353605,0.0238236601068985,68.7222872593043 +00:00:42.1463,69.7061172173744,21.2874133197657,62.6100391757814,0.0239392963306069,68.7274020228301 +00:00:42.1589,69.7059928222407,21.3482798368713,62.7890583437391,0.0240576570275586,68.7380814912207 +00:00:42.1715,69.7058683601017,21.3225524523869,62.7133895658439,0.023994370104907,68.7487654617564 +00:00:42.1873,69.7057130802484,21.2602406239874,62.5301194823159,0.023852108532854,68.7620546658942 +00:00:42.2030,69.7055582552645,21.1979618872138,62.3469467270995,0.0237100205849222,68.7752647057207 +00:00:42.2188,69.705403709899,21.1445347694072,62.1898081453152,0.023586570307312,68.7884255609169 +00:00:42.2489,69.7051096545999,21.0972073139834,62.0506097470099,0.0234657075603957,68.8134114353005 +00:00:42.2894,69.7047137334298,21.1211141176606,62.1209238754723,0.0234867319752507,68.8470119181163 +00:00:42.3299,69.7043171603151,21.1780209789631,62.2882969969504,0.0235767749851555,68.8806752123038 +00:00:42.3704,69.7039198776383,21.2098536467409,62.3819224904144,0.0236141735014354,68.9144100733299 +00:00:42.4109,69.7035222881102,21.2113884246942,62.3864365432181,0.0235881361742351,68.9481520940741 +00:00:42.4665,69.7029763395486,21.2122587133155,62.3889962156339,0.0235498696610861,68.9944250495376 +00:00:42.5000,69.7026474458568,21.2222754277534,62.4184571404513,0.0235466933606348,69.0222720844527 +00:00:42.5022,69.7026255760157,21.2171316689301,62.4033284380296,0.02353434143463,69.0241227812684 +00:00:42.5044,69.7026037187031,21.1992213057965,62.3506508994016,0.023495312107577,69.0259713550344 +00:00:42.5072,69.7025759399782,21.1542052878334,62.2182508465689,0.023399205892869,69.028317359061 +00:00:42.5101,69.7025482353579,21.0859331711153,62.0174505032804,0.023254502207258,69.0306513465029 +00:00:42.5138,69.7025118307632,20.966228058277,61.6653766419912,0.0230016578412407,69.0337056097718 +00:00:42.5224,69.7024292420243,20.6081809609144,60.6122969438658,0.0222471310792606,69.0405594549714 +00:00:42.5310,69.7023482013237,20.1803133054352,59.3538626630446,0.0213463673930084,69.0471645593609 +00:00:42.5396,69.7022688488671,19.744796972066,58.0729322707823,0.0204293043015099,69.0534984816897 +00:00:42.5482,69.7021911227008,19.3519336127769,56.917451802285,0.0196013065758515,69.0595710473629 +00:00:42.5567,69.7021147925196,19.0367678680669,55.9904937296085,0.018935971852075,69.0654190068965 +00:00:42.5673,69.7020218543506,18.7820434117327,55.2413041521549,0.0183962319920924,69.0724231895731 +00:00:42.5811,69.7019021385768,18.6691343499539,54.9092186763349,0.0181523313868696,69.0813477978704 +00:00:42.5925,69.7018036175802,18.7343599046181,55.1010585429943,0.0182833114343532,69.0886741821521 +00:00:42.6039,69.7017045337418,18.8944536950746,55.5719226325722,0.0186130596842705,69.0960882272835 +00:00:42.6153,69.7016045185973,19.0976782742237,56.1696419830109,0.0190329030112496,69.1036487734137 +00:00:42.6266,69.701503464005,19.2971474964378,56.7563161659934,0.0194445114118335,69.1113729849818 +00:00:42.6380,69.7014014739666,19.4582391539644,57.2301151587188,0.019775427762534,69.1192441166632 +00:00:42.6522,69.7012731242475,19.578149590328,57.5827929127293,0.0200182745817146,69.129220096706 +00:00:42.6714,69.7010988778977,19.6047026002808,57.6608900008258,0.0200627222465559,69.142806106331 +00:00:42.6907,69.7009248238171,19.5248902709083,57.4261478556127,0.0198846636326032,69.1563539242609 +00:00:42.7099,69.7007515589515,19.411032125341,57.0912709568853,0.0196355245430832,69.1697683235038 +00:00:42.7291,69.7005791326171,19.3243061058561,56.8361944289884,0.0194433080759115,69.1830415277098 +00:00:42.7483,69.7004072083035,19.2940317753988,56.7471522805846,0.019369299572017,69.1962273267901 +00:00:42.7737,69.7001807361566,19.3262923025785,56.8420361840545,0.0194227263969464,69.213587919532 +00:00:42.7990,69.6999537482623,19.3927158445167,57.0373995426963,0.0195474866321466,69.2310181671226 +00:00:42.8243,69.6997261287155,19.4447589329693,57.1904674499097,0.0196420444576656,69.2485364686061 +00:00:42.8496,69.699498128322,19.4613350529545,57.2392207439837,0.0196624066228287,69.26610275718 +00:00:42.8870,69.6991619707707,19.4469678596699,57.1969642931468,0.0196113700310964,69.2919797519954 +00:00:42.9243,69.6988259954985,19.430374568487,57.1481604955501,0.019555760575492,69.3178000461814 +00:00:42.9616,69.6984900520584,19.4374933096378,57.1690979695229,0.0195497020582029,69.3435876531797 +00:00:43.0000,69.6981449044514,19.4616878411794,57.2402583564099,0.0195787015182869,69.3700745097339 +00:00:43.0023,69.6981233421767,19.4558830717081,57.2231855050237,0.0195652483202553,69.3717287408949 +00:00:43.0047,69.698101795136,19.4343452944895,57.1598391014396,0.0195189732076928,69.3733804342779 +00:00:43.0071,69.6980802822788,19.3941467184289,57.0416079953792,0.0194337682369252,69.3750265741889 +00:00:43.0095,69.6980588235277,19.3361881891719,56.8711417328586,0.0193115101923301,69.3766639899897 +00:00:43.0131,69.6980266695732,19.2210053267871,56.5323686081972,0.0190691769975877,69.3791051351293 +00:00:43.0214,69.6979539017627,18.8705985475231,55.5017604338916,0.0183333333746102,69.384552320706 +00:00:43.0296,69.6978826075825,18.4438614315784,54.2466512693482,0.0174378593139204,69.3897635212088 +00:00:43.0379,69.6978129502918,18.0006281927097,52.9430240962051,0.0165075631337681,69.3947126457004 +00:00:43.0462,69.6977449048958,17.5904450215234,51.7366030044805,0.0156460287245952,69.3994035924816 +00:00:43.0544,69.6976782842254,17.2492987363822,50.7332315775948,0.0149286958600547,69.4038661499939 +00:00:43.0627,69.6976127891773,16.9988458639582,49.9966054822301,0.0144011062476124,69.4081480210216 +00:00:43.0742,69.6975224267038,16.8119609584036,49.4469439953048,0.0140054002142831,69.4139481148967 +00:00:43.0857,69.6974326097573,16.797161484468,49.4034161307882,0.0139701999541759,69.4196593280238 +00:00:43.0973,69.6973425475643,16.9140405170106,49.7471779912076,0.0142107455278235,69.4254079960471 +00:00:43.1088,69.6972516848434,17.108604235122,50.3194242209471,0.0146137261554228,69.4312827670559 +00:00:43.1203,69.6971597500205,17.3259563763391,50.9586952245268,0.0150640560198617,69.4373269035661 +00:00:43.1319,69.6970667355008,17.5206282509807,51.5312595617079,0.0154665806343231,69.4435414885428 +00:00:43.1434,69.6969728331461,17.6627065807753,51.9491370022802,0.0157588461408803,69.449895790165 +00:00:43.1581,69.6968527893829,17.7501298132685,52.206264156672,0.0159353593705523,69.4580852642257 +00:00:43.1763,69.6967028053877,17.7362327045595,52.1653903075278,0.0158985050149835,69.4683389470598 +00:00:43.1946,69.6965532376744,17.6399376525203,51.8821695662361,0.0156895244557583,69.4785212628942 +00:00:43.2129,69.6964044899508,17.5277866167861,51.5523135787825,0.0154475313244304,69.4885679052024 +00:00:43.2311,69.6962565049191,17.4500947396827,51.3238080578904,0.0152776748901044,69.4984880837803 +00:00:43.2494,69.6961089345763,17.4273694901141,51.2569690885709,0.0152227685511027,69.5083373396446 +00:00:43.2756,69.6958971541291,17.4660090610552,51.3706148854564,0.0152928655564591,69.5224748272569 +00:00:43.3018,69.6956847926013,17.5348005295166,51.5729427338723,0.0154258429017146,69.5366950163019 +00:00:43.3280,69.6954717897274,17.5828513236535,51.7142685989808,0.0155153738358206,69.5510074216567 +00:00:43.3542,69.6952584549068,17.5923820177308,51.7423000521494,0.0155244160678091,69.5653626863916 +00:00:43.3938,69.6949366438769,17.5717877488162,51.6817286729888,0.0154650823218334,69.5869893059934 +00:00:43.4333,69.6946150637351,17.5563106071592,51.6362076681152,0.0154164991187017,69.6085563907725 +00:00:43.4729,69.6942934792959,17.5674789954588,51.6690558689964,0.0154235341422952,69.6301014163184 +00:00:43.5000,69.6940732273906,17.5855399080513,51.7221762001509,0.0154500595966352,69.6448585200486 +00:00:43.5021,69.6940560995053,17.581215431623,51.7094571518324,0.0154401758671592,69.6460060731806 +00:00:43.5042,69.694038981987,17.564481268927,51.6602390262558,0.015404414406337,69.6471519129156 +00:00:43.5067,69.6940181515389,17.5236404841898,51.5401190711465,0.0153181954690753,69.6485429813191 +00:00:43.5093,69.6939973820824,17.4614205404463,51.3571192366066,0.0151873924089531,69.6499242520828 +00:00:43.5125,69.6939715289286,17.3578220206117,51.0524177076816,0.0149700237187634,69.6516320001621 +00:00:43.5197,69.6939143820035,17.0523673508194,50.154021620057,0.01432993896292,69.6553411876726 +00:00:43.5285,69.693845692869,16.5894944372592,48.7926306978213,0.0133604170681498,69.6596503777889 +00:00:43.5373,69.6937789241548,16.0975562878275,47.345753787728,0.0123297044906104,69.6636526511806 +00:00:43.5462,69.6937140672082,15.6401966936288,46.0005785106729,0.011370773957421,69.66734925537 +00:00:43.5550,69.6936508971922,15.2636519906434,44.8930940901276,0.010580524708493,69.6707759364229 +00:00:43.5638,69.6935890380278,14.9950120954879,44.1029767514349,0.0100159386099357,69.6739926426565 +00:00:43.5748,69.6935132195568,14.8222295814552,43.5947928866328,0.00965151176284148,69.6778166794316 +00:00:43.5858,69.6934373372883,14.8116996472715,43.5638224919749,0.00962690682679322,69.681590780977 +00:00:43.5969,69.6933612104496,14.9272033989893,43.903539408792,0.00986619703316396,69.6854029428424 +00:00:43.6079,69.6932843254329,15.1186603821831,44.4666481828913,0.0102643121190836,69.68933515565 +00:00:43.6190,69.6932064214744,15.3350687872267,45.1031434918434,0.0107143415684646,69.6934289690155 +00:00:43.6300,69.6931274748441,15.5334652399493,45.686662470439,0.0111263685626521,69.6976880598422 +00:00:43.6411,69.6930476454143,15.6844106720086,46.1306196235548,0.0114389106816048,69.70208681575 +00:00:43.6546,69.6929488771596,15.7857503509396,46.4286775027635,0.0116468670339866,69.7076079623774 +00:00:43.6725,69.6928185666025,15.7934226752948,46.4512431626317,0.0116577487963912,69.7149323732622 +00:00:43.6903,69.6926885422359,15.7064093486711,46.1953216137386,0.0114707919359115,69.7222079390429 +00:00:43.7082,69.6925592982474,15.5899161749881,45.852694632318,0.0112223177866629,69.7293559076058 +00:00:43.7260,69.6924308697228,15.4983305617628,45.5833251816554,0.0110259997994178,69.7363707435387 +00:00:43.7439,69.692302965274,15.4591086673836,45.4679666687753,0.0109392053044626,69.7432989599913 +00:00:43.7662,69.6921431276024,15.4775979598809,45.5223469408261,0.0109718501419414,69.7519426732639 +00:00:43.7885,69.6919829386507,15.5353221699693,45.6921240293213,0.0110864319802606,69.7606376324036 +00:00:43.8108,69.6918222129809,15.5907370844138,45.8551090718052,0.0111960934489727,69.7694133459699 +00:00:43.8331,69.6916610806966,15.6187159401132,45.9373998238625,0.0112483720039022,69.7782490252255 +00:00:43.8619,69.6914526967274,15.6150329218988,45.9265674173494,0.0112326992845598,69.7896840752193 +00:00:43.8907,69.6912444470962,15.5926700337448,45.8607942168964,0.0111780460507723,69.8010896215019 +00:00:43.9196,69.6910363989181,15.5787159050512,45.8197526619154,0.0111409908141821,69.8124549987779 +00:00:43.9559,69.6907744426267,15.5858257409631,45.8406639440092,0.0111458750224619,69.8267505211444 +00:00:44.0000,69.6904562087637,15.6093118254173,45.9097406629922,0.0111827809889997,69.8441302662829 +00:00:44.0018,69.6904426331188,15.6058850647915,45.8996619552691,0.0111751130607575,69.8448718561888 +00:00:44.0037,69.690429064566,15.5923790227802,45.8599383022948,0.0111464125068676,69.8456122828768 +00:00:44.0061,69.6904117573076,15.5567961301524,45.7552827357424,0.0110714999597553,69.8465537482104 +00:00:44.0085,69.6903945005234,15.5013121608158,45.5920945906348,0.0109550555232382,69.847487122793 +00:00:44.0109,69.6903773149172,15.428029431798,45.3765571523471,0.0108014593482618,69.8484091103647 +00:00:44.0159,69.6903416937986,15.2299803217387,44.7940597698198,0.0103867049287968,69.8502857722439 +00:00:44.0240,69.6902856384283,14.8251047663615,43.603249312828,0.00953911881370137,69.85311670269 +00:00:44.0321,69.6902311835381,14.3629041501305,42.2438357356781,0.00857131602458959,69.8556920013312 +00:00:44.0401,69.6901784303217,13.9005855002235,40.8840750006573,0.00760273734594371,69.8579954091869 +00:00:44.0482,69.6901273004565,13.4841827171057,39.6593609326639,0.0067297627892602,69.8600392958649 +00:00:44.0562,69.6900775694681,13.1460065166574,38.6647250489924,0.00602025965674304,69.8618593995239 +00:00:44.0643,69.6900289168565,12.9043200334378,37.9538824512876,0.00551274655573214,69.8635068602575 +00:00:44.0752,69.6899642916718,12.7368553330695,37.4613392149102,0.00516041280784396,69.865569521922 +00:00:44.0861,69.6899001074842,12.7323760202146,37.4481647653371,0.00514979729988959,69.8675611900615 +00:00:44.0969,69.6898356567508,12.8523269884218,37.8009617306523,0.00539999858415086,69.8695950021659 +00:00:44.1078,69.6897704403519,13.0470901999557,38.373794705752,0.00580682150573628,69.8717507239743 +00:00:44.1187,69.6897042052719,13.266421719182,39.0188874093587,0.00626483782142655,69.8740687203669 +00:00:44.1295,69.689636928643,13.4679657968153,39.6116641082803,0.00668530488250667,69.8765525452736 +00:00:44.1404,69.689568766334,13.6224982361964,40.0661712829306,0.00700711452371003,69.8791772069577 +00:00:44.1513,69.6894999837989,13.7157066210058,40.3403135911936,0.00720043262684669,69.8819002476961 +00:00:44.1675,69.6893968719707,13.7466751865392,40.4313976074681,0.00726257547496671,69.8860320868081 +00:00:44.1838,69.6892938621077,13.6823186685351,40.2421137309857,0.00712527184680272,69.8901461404112 +00:00:44.2000,69.6891914548864,13.5744648681457,39.9248966710169,0.00689700620579442,69.8941625049052 +00:00:44.2162,69.6890897994763,13.4723047142211,39.6244256300622,0.00668071734836414,69.8980574015505 +00:00:44.2325,69.6889887498347,13.4079672493117,39.4351977920934,0.00654364557378245,69.9018541814565 +00:00:44.2487,69.6888880024145,13.3914423690024,39.3865952029482,0.00650668350234487,69.9056013350851 +00:00:44.2709,69.6887503816255,13.4248425850097,39.4848311323814,0.0065733380103091,69.9107296231659 +00:00:44.2930,69.6886123268253,13.4844323081834,39.6600950240689,0.00669473760353036,69.9159246277376 +00:00:44.3152,69.6884737636419,13.5321217405223,39.8003580603597,0.00679116020650661,69.9211981740021 +00:00:44.3373,69.6883348807965,13.5498084136489,39.8523776872027,0.00682476844590708,69.9265201006259 +00:00:44.3678,69.6881439067659,13.5370667093497,39.8149020863227,0.00679345104808562,69.9338369069009 +00:00:44.3983,69.6879531445111,13.5128075305427,39.7435515604197,0.00673807367347662,69.9411149245799 +00:00:44.4287,69.6877625811922,13.5030883267278,39.7149656668464,0.00671313790564293,69.9483562278784 +00:00:44.4658,69.6875307729044,13.5146000182238,39.7488235830111,0.00673160949819028,69.9571615949468 +00:00:44.5000,69.6873169633114,13.5327619023817,39.8022408893578,0.00676440394297605,69.9653011290295 +00:00:44.5016,69.6873065436068,13.5300980546712,39.7944060431505,0.00675858137719407,69.9656981930054 +00:00:44.5033,69.6872961288908,13.5194846949237,39.7631902791875,0.00673613806654074,69.9660944464744 +00:00:44.5055,69.6872820595307,13.4888196482868,39.6729989655493,0.00667168115223694,69.9666270182072 +00:00:44.5078,69.6872680317126,13.4396983834088,39.5285246570847,0.00656863223905838,69.9671529369576 +00:00:44.5100,69.6872540635323,13.3737734495662,39.3346277928418,0.0064304401853624,69.9676693160045 +00:00:44.5141,69.6872292845069,13.2215914437394,38.887033658057,0.00611157246404395,69.9685598314689 +00:00:44.5214,69.6871851576644,12.8645540465741,37.8369236663945,0.00536354957486417,69.9700366055707 +00:00:44.5287,69.6871423406752,12.4414496859763,36.5924990764008,0.00447684339200955,69.9713039967881 +00:00:44.5360,69.6871009694205,11.9996895748823,35.2932046320067,0.00355054853535329,69.9723401930176 +00:00:44.5433,69.6870610434964,11.579548676312,34.0574961067999,0.00266905507141392,69.973145137531 +00:00:44.5506,69.6870224423594,11.2119611382961,32.9763562891063,0.00189737430417043,69.9737379992871 +00:00:44.5579,69.6869849565158,10.9178532793478,32.1113331745524,0.00127963731086789,69.9741522229161 +00:00:44.5668,69.6869403520162,10.6740765542611,31.3943428066502,0.000767387324323419,69.9744821551152 +00:00:44.5758,69.6868964939316,10.5563130154604,31.0479794572366,0.000519825422841033,69.9746924342836 +00:00:44.5847,69.6868528952421,10.5521554640215,31.0357513647692,0.000510995671242042,69.9748611062065 +00:00:44.5936,69.6868091374161,10.6386531768644,31.2901564025423,0.000692643448829124,69.9750552525333 +00:00:44.6025,69.6867649068609,10.7869487456811,31.7263198402385,0.00100403769599452,69.9753251182313 +00:00:44.6114,69.686720010316,10.9668712969022,32.2555038144182,0.00138170396138115,69.9757016362059 +00:00:44.6203,69.686674372665,11.1507697777867,32.7963816993725,0.00176752668937424,69.9761967891446 +00:00:44.6292,69.6866280212695,11.3162560185574,33.2831059369334,0.00211451607166887,69.9768061395973 +00:00:44.6400,69.6865713306609,11.4691830802804,33.7328914125893,0.00243490607359512,69.9776658824856 +00:00:44.6531,69.686501680109,11.5730386152449,34.0383488683674,0.00265209806281866,69.9788314369482 +00:00:44.6661,69.6864316573758,11.5911285740785,34.0915546296426,0.00268933106852284,69.9800562359194 +00:00:44.6792,69.6863617092383,11.5432719688273,33.9507999083155,0.00258824593376521,69.981268775696 +00:00:44.6923,69.6862921425735,11.458710385184,33.7020893681883,0.0024101905760636,69.9824199571777 +00:00:44.7053,69.6862230915384,11.3671525794084,33.4328017041422,0.00221748296272198,69.9834883239161 +00:00:44.7184,69.6861545335418,11.2918433066386,33.2113038430547,0.00205889278871258,69.9844775048536 +00:00:44.7315,69.686086337021,11.245969899117,33.0763820562263,0.00196209457939163,69.9854085705505 +00:00:44.7502,69.685988639795,11.2333694255645,33.0393218398955,0.00193490969127266,69.9867080382175 +00:00:44.7690,69.6858908711308,11.2658620513565,33.1348883863427,0.00200234766796836,69.9880184456676 +00:00:44.7878,69.6857927718527,11.3158181964099,33.2818182247351,0.00210639210241956,69.989381265964 +00:00:44.8065,69.6856942935628,11.3581865608917,33.4064310614461,0.00219446975625327,69.9908042209662 +00:00:44.8253,69.6855955488376,11.3792875779651,33.4684928763678,0.00223789723407672,69.9922692700766 +00:00:44.8520,69.6854548297999,11.3757741128179,33.4581591553467,0.00222931932394318,69.9943697023695 +00:00:44.8788,69.6853142401869,11.3538967317653,33.3938139169567,0.00218222985281828,69.9964482929774 +00:00:44.9055,69.6851738600103,11.3367454851869,33.3433690740793,0.00214507602066068,69.998492251143 +00:00:44.9322,69.6850335839949,11.3350770654756,33.3384619572811,0.00214041400505656,70.0005184372662 +00:00:44.9734,69.6848172932839,11.3502654866792,33.3831337843505,0.00217047339043559,70.0036600139697 +00:00:45.0000,69.6846776104217,11.3624118598021,33.4188584111826,0.00219477668562003,70.005707419961 +00:00:45.0023,69.6846654032442,11.3592100858542,33.4094414289829,0.00218795767938055,70.0058868974167 +00:00:45.0046,69.6846532041272,11.3475581689892,33.3751710852623,0.00216341438329027,70.0060650766832 +00:00:45.0069,69.6846410229435,11.3258546672844,33.3113372567188,0.00211778743093481,70.0062403780661 +00:00:45.0092,69.6846288701166,11.2945305948187,33.2192076318198,0.00205197971587006,70.0064111336942 +00:00:45.0128,69.684610480783,11.2314616800552,33.0337108236918,0.00191952563266447,70.0066580605412 +00:00:45.0211,69.6845675230592,11.0314777081222,32.4455226709477,0.00149959936433765,70.0071578649322 +00:00:45.0294,69.6845254193254,10.7856972828399,31.7226390671763,0.000983457460717784,70.0075208673984 +00:00:45.0378,69.6844842693495,10.5294331654116,30.9689210747401,0.000445162337980169,70.0077310600834 +00:00:45.0461,69.6844440609908,10.2919706231027,30.270501832655,-5.37775686738218e-05,70.0077903522687 +00:00:45.0545,69.6844046853531,10.0945856517897,29.6899577993813,-0.000468599676749735,70.0077161652079 +00:00:45.0628,69.6843659667475,9.95005737064118,29.2648746195329,-0.000772363228446626,70.0075366455668 +00:00:45.0744,69.6843126788224,9.84325660830035,28.9507547302952,-0.000996765404389106,70.0071823071769 +00:00:45.0860,69.684259702223,9.83591033823312,28.9291480536268,-0.00101200122157656,70.0067781133165 +00:00:45.0977,69.6842065778858,9.90419292784431,29.1299791995421,-0.000868200081314622,70.0063977040321 +00:00:45.1093,69.6841529861815,10.0164706848198,29.4602078965288,-0.000631951688507682,70.0060923356672 +00:00:45.1209,69.6840987743028,10.1408011781602,29.8258858181182,-0.000370465597918199,70.0058864857743 +00:00:45.1325,69.6840439434979,10.2509750352766,30.1499265743428,-0.000138840366996275,70.0057799159124 +00:00:45.1441,69.6839886101136,10.3300274183314,30.3824335833277,2.73017851919165e-05,70.0057539375234 +00:00:45.1590,69.6839171733682,10.376642021475,30.5195353572794,0.000125232971342235,70.0057875836578 +00:00:45.1773,69.6838297643562,10.3641758257554,30.4828700757511,9.90049683118934e-05,70.005850010063 +00:00:45.1955,69.6837426209698,10.3067449286819,30.3139556725939,-2.16868424934626e-05,70.0058698464225 +00:00:45.2137,69.683655958359,10.2419803887774,30.1234717316983,-0.00015776171928256,70.0058126188618 +00:00:45.2319,69.6835697334834,10.1977357236805,29.9933403637661,-0.000250684152791458,70.0056852461183 +00:00:45.2501,69.6834837446277,10.184846288233,29.9554302595088,-0.000277686738576677,70.005520082966 +00:00:45.2772,69.6833561224412,10.2068256565239,30.0200754603644,-0.000231363267292613,70.0052867032128 +00:00:45.3042,69.6832281678633,10.2450399350454,30.1324703971923,-0.000150949119960465,70.0051067192445 +00:00:45.3312,69.6830998630477,10.2693861529645,30.204076920484,-9.97151306773859e-05,70.004982964928 +00:00:45.3582,69.682971405498,10.2708320906774,30.2083296784629,-9.66225349743014e-05,70.0048837567854 +00:00:45.3985,69.6827801159718,10.2550946232258,30.1620430094876,-0.000129605712232291,70.0047158990429 +00:00:45.4388,69.6825890127056,10.2445956606664,30.1311637078424,-0.000151564049671996,70.0045183222388 +00:00:45.4790,69.6823979414692,10.2494338118573,30.1453935642861,-0.00014128598576565,70.004315762437 +00:00:45.5000,69.6822987013365,10.2562150711479,30.1653384445525,-0.000126980482538555,70.0042170600917 +00:00:45.5409,69.6821043049973,10.264906791413,30.1909023276853,-0.000108620570422208,70.0040456420355 +00:00:45.6007,69.6818199218094,10.266852359571,30.1966245869736,-0.000104406708127312,70.0038152217677 +00:00:45.6885,69.6814027032942,10.2668916988079,30.1967402906114,-0.000104146876517514,70.0034886403054 +00:00:45.7763,69.6809853521048,10.271265720348,30.2096050598471,-9.47888990897204e-05,70.0031838593429 +00:00:45.8763,69.6805096847037,10.2771392807597,30.2268802375284,-8.22760189265521e-05,70.0028727751818 +00:00:45.9763,69.6800338180146,10.2807544153626,30.2375129863606,-7.45271578226739e-05,70.0025942064792 +00:00:46.0000,69.6799211538293,10.2812891913361,30.2390858568707,-7.33697025967118e-05,70.0025323888198 +00:00:46.1000,69.6794450950696,10.2843452777508,30.2480743463258,-6.68127909551475e-05,70.0022852387404 +00:00:46.2000,69.6789688903848,10.287637773241,30.2577581565911,-5.97719771974367e-05,70.0020619312314 +00:00:46.3000,69.6784925483447,10.2904406503915,30.2660019129163,-5.37723266573579e-05,70.0018610510755 +00:00:46.4000,69.6780160866997,10.2927993645276,30.2729393074341,-4.87167419007575e-05,70.001679712921 +00:00:46.5000,69.6775395180147,10.2949943945752,30.2793952781623,-4.40146540071527e-05,70.0015158665681 +00:00:46.6000,69.6770628513187,10.297026647991,30.285372494091,-3.96633535736034e-05,70.0013680321474 +00:00:46.7000,69.6765860960277,10.2988372149784,30.2906976911131,-3.57858102335115e-05,70.0012346708719 +00:00:46.8000,69.6761092612437,10.3004570898743,30.295462029042,-3.23160797117021e-05,70.001114297196 +00:00:46.9000,69.6756323547301,10.3019274279003,30.299786552648,-2.9166981783682e-05,70.0010056428178 +00:00:47.0000,69.6751553833345,10.3032582153664,30.3037006334305,-2.63169215284188e-05,70.0009075884923 +00:00:47.1000,69.6746783533899,10.3044563360169,30.3072245176966,-2.37508701980233e-05,70.0008190996234 +00:00:47.2000,69.67420127065,10.3055366574925,30.3104019338014,-2.14370715695421e-05,70.0007392363244 +00:00:47.3000,69.673724140257,10.3065126292208,30.3132724388848,-1.93468040890734e-05,70.0006671584577 +00:00:47.4000,69.6732469668435,10.3073936764173,30.3158637541685,-1.74598486279479e-05,70.0006021091335 +00:00:47.5000,69.6727697546068,10.3081884942402,30.3182014536478,-1.57575589703005e-05,70.0005434026209 +00:00:47.6000,69.6722925073363,10.3089057658932,30.3203110761565,-1.42213502159614e-05,70.0004904198247 +00:00:47.7000,69.6718152284467,10.3095532075971,30.3222153164622,-1.28347029052528e-05,70.0004426028558 +00:00:47.8000,69.6713379210198,10.3101375302378,30.323933912464,-1.1583239926363e-05,70.0003994482289 +00:00:47.9000,69.6708605878384,10.3106648465764,30.3254848428719,-1.0453867700821e-05,70.0003605012849 +00:00:48.0000,69.6703832314141,10.3111407484977,30.3268845544051,-9.43461141072189e-06,70.0003253517113 +00:00:48.1000,69.6699058540129,10.3115702595444,30.3281478221896,-8.51471243676812e-06,70.0002936292839 +00:00:48.2000,69.6694284576799,10.3119578916211,30.3292879165328,-7.68450701856064e-06,70.0002649998646 +00:00:48.3000,69.6689510442612,10.3123077255503,30.3303168398538,-6.93525504075812e-06,70.0002391618696 +00:00:48.4000,69.6684736154226,10.3126234504505,30.3312454425016,-6.2590555689474e-06,70.0002158431257 +00:00:48.5000,69.6679961726676,10.3129083925285,30.3320835074369,-5.64878478427875e-06,70.0001947980042 +00:00:48.6000,69.6675187173531,10.3131655519675,30.332839858728,-5.09801704812172e-06,70.0001758048237 +00:00:48.7000,69.6670412507036,10.3133976375676,30.3335224634341,-4.60095083406665e-06,70.0001586635148 +00:00:48.8000,69.6665637738244,10.3136070938912,30.3341385114448,-4.15234992532005e-06,70.0001431935149 +00:00:48.9000,69.6660862877128,10.3137961290964,30.3346944973424,-3.74748639109325e-06,70.0001292318721 +00:00:49.0000,69.665608793269,10.3139667320485,30.3351962707308,-3.38209983629807e-06,70.0001166315164 +00:00:49.1000,69.6651312913055,10.3141207009538,30.3356491204522,-3.05233903093189e-06,70.0001052597185 +00:00:49.2000,69.6646537825554,10.3142596579488,30.3360578174964,-2.75472979614863e-06,70.0000949966928 +00:00:49.3000,69.6641762676804,10.3143850662881,30.3364266655532,-2.48613821161714e-06,70.0000857343323 +00:00:49.4000,69.6636987472777,10.3144982469709,30.3367595499145,-2.2437350464713e-06,70.0000773750698 +00:00:49.5000,69.6632212218863,10.3146003923576,30.3370599775224,-2.024966585758e-06,70.0000698308514 +00:00:49.6000,69.6627436919926,10.3146925784071,30.337331112962,-1.82752840916971e-06,70.0000630222088 +00:00:49.7000,69.6622661580356,10.3147757761356,30.3375758121636,-1.64934085470246e-06,70.0000568774221 +00:00:49.8000,69.6617886204114,10.3148508619214,30.33779665271,-1.48852695139551e-06,70.0000513317639 +00:00:49.9000,69.6613110794776,10.3149186267051,30.3379959608974,-1.34339271305754e-06,70.000046326818 +00:00:50.0000,69.6608335355568,10.314979784302,30.3381758361824,-1.21240933546024e-06,70.000041809864 +00:00:50.0034,69.6608170623831,10.3098950253316,30.3232206627399,-1.18979270694317e-05,70.0000408808976 +00:00:50.0069,69.6608006055194,10.2954212785375,30.280650819228,-4.23142435967717e-05,70.0000373373291 +00:00:50.0103,69.6607841799374,10.270784593759,30.2081899816442,-9.40881937179463e-05,70.0000287790662 +00:00:50.0138,69.660767800443,10.2373177838316,30.10975818774,-0.000164419883641021,70.0000128325275 +00:00:50.0202,69.6607373947236,10.1584608284384,29.8778259659952,-0.000330146395167105,69.9999556796642 +00:00:50.0311,69.6606864657569,10.0001528440309,29.4122142471498,-0.000662875363743501,69.9997618628085 +00:00:50.0420,69.6606363338212,9.83752362099444,28.9338930029248,-0.00100471945622012,69.9994402518093 +00:00:50.0529,69.6605869482337,9.69884382968725,28.526011263786,-0.0012962135947245,69.9989989710958 +00:00:50.0639,69.6605381505847,9.60174249800857,28.2404191117899,-0.00150023877006911,69.9984634371963 +00:00:50.0774,69.6604782645708,9.5470661983969,28.0796064658732,-0.00161491241907463,69.9977276480123 +00:00:50.0909,69.6604185280852,9.55589577735665,28.1055758157549,-0.00159593472252958,69.9969680428565 +00:00:50.1044,69.6603586154606,9.60826422135916,28.2596006510563,-0.00148535042516137,69.9962368969531 +00:00:50.1179,69.6602983328731,9.67944441567082,28.4689541637377,-0.00133522401017355,69.9955653097501 +00:00:50.1314,69.6602376294911,9.74702122782166,28.6677094935931,-0.00119272994754068,69.9949614200206 +00:00:50.1449,69.6601765703221,9.79565479669376,28.8107494020405,-0.00109012973436823,69.9944147745567 +00:00:50.1625,69.6600966605547,9.82150686783075,28.8867849053846,-0.00103539471409749,69.9937486004654 +00:00:50.1860,69.6599899735944,9.80536622657693,28.8393124311086,-0.00106888109885406,69.9928659582866 +00:00:50.2095,69.6598835690608,9.7628453942879,28.7142511596703,-0.00115784378144666,69.9919383925357 +00:00:50.2330,69.6597775503843,9.72717527778862,28.6093390523195,-0.00123236907305221,69.9909493221885 +00:00:50.2565,69.6596717743663,9.71522830618075,28.5742009005316,-0.00125696471283136,69.9899217466269 +00:00:50.2861,69.6595385145884,9.72759600302248,28.6105764794779,-0.00123026132357401,69.9886287313357 +00:00:50.3157,69.6594050604088,9.74864297267509,28.6724793313973,-0.00118531287879333,69.9873676195405 +00:00:50.3453,69.6592714143322,9.7597429478986,28.7051263173488,-0.00116130957034181,69.9861379941247 +00:00:50.3814,69.6591082099281,9.7560304506865,28.6942072079015,-0.00116833343769865,69.9846459806508 +00:00:50.4299,69.6588892359542,9.74431203793484,28.6597412880436,-0.00119192196702686,69.9826205592845 +00:00:50.4784,69.65867038994,9.74069042933285,28.6490894980378,-0.00119846472335666,69.9805764375737 +00:00:50.5000,69.658573271325,9.74283888024287,28.6554084713026,-0.00119346467334222,69.9796677040654 +00:00:50.5018,69.6585648247332,9.7407521790974,28.6492711149924,-0.00119781392796363,69.979588565042 +00:00:50.5037,69.6585563823017,9.73355988951444,28.6281173221013,-0.00121290651872439,69.9795087609971 +00:00:50.5063,69.6585448690871,9.71337852658685,28.5687603723143,-0.00125531618834353,69.9793970686573 +00:00:50.5088,69.6585333865455,9.68171123996016,28.4756212940005,-0.00132189680307856,69.9792804578074 +00:00:50.5114,69.658521947298,9.63984432210063,28.352483300296,-0.00140994424050353,69.979156902282 +00:00:50.5167,69.6584980990297,9.52649934119511,28.0191157093974,-0.00164836857300396,69.9788653533739 +00:00:50.5254,69.6584603908393,9.29663027275341,27.3430302139806,-0.00213206092062941,69.978283845203 +00:00:50.5341,69.6584236477995,9.03901269372167,26.5853314521226,-0.00267433995177146,69.9775473842315 +00:00:50.5427,69.658387908336,8.7883236587698,25.8480107610876,-0.00320219017003427,69.9766497531165 +00:00:50.5514,69.6583530959308,8.57139430111905,25.2099832385855,-0.00365902128113123,69.9756032108984 +00:00:50.5600,69.6583190453283,8.40566562857726,24.7225459664037,-0.00400797495833495,69.9744343026409 +00:00:50.5687,69.658285538901,8.29924347671962,24.4095396374106,-0.00423186884755988,69.9731780214729 +00:00:50.5800,69.6582421614183,8.24697474340234,24.2558080688304,-0.00434132531249894,69.9714728700711 +00:00:50.5913,69.6581988500243,8.27711264622274,24.3444489594786,-0.00427690396348252,69.9697574143413 +00:00:50.6026,69.6581552487721,8.3637196303582,24.5991753834065,-0.00409336701863443,69.9680889363432 +00:00:50.6140,69.6581111389505,8.47733208650612,24.9333296661945,-0.00385292498569557,69.9665026166036 +00:00:50.6253,69.6580664469148,8.59090755632175,25.2673751656522,-0.00361264460155496,69.9650102784293 +00:00:50.6366,69.6580212218623,8.68407004618092,25.5413824887674,-0.00341548776425867,69.9636039778093 +00:00:50.6479,69.6579755966016,8.74514214568813,25.7210063108475,-0.00328604690513462,69.9622623274781 +00:00:50.6635,69.6579125511516,8.77377250991059,25.8052132644429,-0.00322478644370981,69.9604668679519 +00:00:50.6790,69.6578494750508,8.75115072732541,25.7386786097806,-0.00327159101505254,69.958676831295 +00:00:50.6946,69.6577866458766,8.69990913258282,25.5879680370083,-0.00337873177713771,69.9568475721003 +00:00:50.7101,69.6577241838775,8.64422173969292,25.4241815873321,-0.00349523512349032,69.9549597544394 +00:00:50.7257,69.6576620618991,8.60230793373745,25.3009056874631,-0.0035826769236735,69.9530177549231 +00:00:50.7412,69.6576001578349,8.58272594223632,25.2433115948127,-0.00362300564263967,69.9510412261081 +00:00:50.7648,69.6575063832593,8.58921466647082,25.2623960778553,-0.00360783561357671,69.9480377031979 +00:00:50.7884,69.6574124387231,8.61814904605231,25.3474971942715,-0.0035453301465218,69.9450627575894 +00:00:50.8120,69.6573182192109,8.64503028752774,25.4265596691992,-0.00348717614657771,69.942133274427 +00:00:50.8356,69.6572238080978,8.65588665976758,25.458490175787,-0.00346283947142769,69.9392358245428 +00:00:50.8660,69.6571019144164,8.64858185763848,25.4370054636426,-0.00347639782257647,69.9355003913025 +00:00:50.8964,69.6569801552298,8.63318802427558,25.3917294831635,-0.00350701403180506,69.9317453095861 +00:00:50.9269,69.6568585439105,8.62430585710683,25.3656054620789,-0.00352388459009068,69.9279684349061 +00:00:50.9655,69.6567040819666,8.62639928019961,25.3717625888224,-0.00351709033136123,69.923164759123 +00:00:51.0000,69.6565666204084,8.63327033022755,25.3919715594928,-0.00350048197804657,69.9189026791299 +00:00:51.0020,69.6565584926393,8.63090855014315,25.3850251474799,-0.00350534105331313,69.9186509455798 +00:00:51.0040,69.6565503698831,8.62257639709513,25.3605188149857,-0.00352279839485488,69.9183984140548 +00:00:51.0065,69.6565403913304,8.60227847886617,25.3008190554888,-0.00356547684654887,69.9180849372944 +00:00:51.0090,69.6565304423532,8.57137340596378,25.2099217822464,-0.00363054004970617,69.9177667132551 +00:00:51.0121,69.6565183234111,8.52106703525826,25.0619618684067,-0.00373651546970539,69.9173679213765 +00:00:51.0186,69.6564927325542,8.37991772492001,24.646816838,-0.00403402393171789,69.9164680451391 +00:00:51.0272,69.6564599918772,8.15074241704387,23.9727718148349,-0.0045173229149519,69.9151722468471 +00:00:51.0358,69.656428184043,7.9024393943362,23.2424688068712,-0.00504117988052299,69.9137263495805 +00:00:51.0443,69.6563973228998,7.66631656902126,22.5479899088861,-0.00553946804036087,69.9121280779617 +00:00:51.0529,69.6563673183441,7.46593572729037,21.9586344920305,-0.00596233563329232,69.9103919175767 +00:00:51.0614,69.6563380038205,7.31606527240704,21.5178390364913,-0.00627847112438567,69.9085447007938 +00:00:51.0700,69.65630917016,7.22292140391985,21.2438864821172,-0.00647464626021964,69.9066201569852 +00:00:51.0806,69.6562737222099,7.18276397112826,21.1257763856713,-0.00655850963449473,69.9041822437054 +00:00:51.0912,69.6562383072048,7.21235717494144,21.212815220416,-0.00649478532486471,69.9017394288511 +00:00:51.1019,69.656202639753,7.29035529188541,21.4422214467218,-0.00632866312111959,69.8993377706588 +00:00:51.1125,69.656166540644,7.39278400233863,21.7434823598195,-0.00611090291925285,69.8970061801968 +00:00:51.1231,69.6561299423674,7.49739736145378,22.0511687101582,-0.00588858442528093,69.8947555328579 +00:00:51.1337,69.6560928738286,7.58684361705887,22.3142459325261,-0.00569840345147744,69.8925811438181 +00:00:51.1443,69.6560554328556,7.65031323628654,22.5009212831957,-0.00556319901492071,69.8904672125983 +00:00:51.1587,69.6560045825945,7.68922878641149,22.6153787835632,-0.0054796008785506,69.8876675828034 +00:00:51.1730,69.6559536240876,7.68158458234354,22.5928958304222,-0.00549446558405596,69.8848860750956 +00:00:51.1873,69.6559028061906,7.6430389652854,22.4795263684865,-0.00557467349311493,69.8820825443703 +00:00:51.2017,69.6558522696901,7.59272785677982,22.3315525199406,-0.00567975840677597,69.8792342810773 +00:00:51.2160,69.655802040237,7.54740519759871,22.1982505811727,-0.00577428577473157,69.8763371507323 +00:00:51.2303,69.655752054474,7.51768433560108,22.1108362811797,-0.00583580247154926,69.8734013806809 +00:00:51.2497,69.6556847535666,7.50652498082126,22.0780146494743,-0.00585756835607685,69.8694120052213 +00:00:51.2733,69.6556024314982,7.52390446905909,22.1291307913503,-0.00581854428387174,69.864541592255 +00:00:51.2970,69.6555198836074,7.55279931205172,22.2141156236815,-0.00575516829476349,69.859709502316 +00:00:51.3206,69.6554370914692,7.57284443457371,22.2730718663933,-0.00571053192825324,69.8549186981007 +00:00:51.3443,69.6553541777923,7.57619278741844,22.2829199629954,-0.00570123292442427,69.8501493645875 +00:00:51.3797,69.6552301683721,7.56318702437546,22.2446677187514,-0.00572543921465499,69.8430015252432 +00:00:51.4151,69.6551063455709,7.54887478767786,22.2025729049349,-0.00575240479247819,69.835827709573 +00:00:51.4504,69.6549826429255,7.54576454347654,22.1934251278722,-0.00575565676999767,69.8286386550446 +00:00:51.5000,69.654809600041,7.5522928516247,22.2126260341903,-0.00573718235674679,69.8185976076493 +00:00:51.5019,69.6548029160928,7.55041631287087,22.2071068025614,-0.0057409755034663,69.8182099318243 +00:00:51.5038,69.6547962358427,7.54351746576012,22.1868160757651,-0.00575540155715422,69.8178216708594 +00:00:51.5062,69.6547878505851,7.5259625649132,22.1351840144506,-0.00579234210053635,69.8173312736244 +00:00:51.5086,69.6547794901131,7.49884266848996,22.0554196132058,-0.00584953501825923,69.8168368925474 +00:00:51.5110,69.6547711643974,7.46318090921581,21.9505320859288,-0.00592481640633747,69.8163369170907 +00:00:51.5161,69.6547534988048,7.36457840035114,21.6605247069151,-0.00613312558698192,69.8152396942536 +00:00:51.5243,69.6547261819763,7.16679200500527,21.0788000147214,-0.00655127232322065,69.8134166743226 +00:00:51.5324,69.6546996512926,6.94191362483894,20.4173930142322,-0.00702695408673532,69.8114668348649 +00:00:51.5405,69.6546739534063,6.71786709574156,19.758432634534,-0.00750102884476601,69.8093825964989 +00:00:51.5486,69.6546490466665,6.51702413412945,19.1677180415572,-0.00792604092419827,69.8071706567549 +00:00:51.5568,69.6546248180443,6.35496140893282,18.6910629674495,-0.00826888878615568,69.8048492703949 +00:00:51.5659,69.6545981725309,6.2295693850713,18.3222628972685,-0.0085338553203607,69.802141767836 +00:00:51.5772,69.6545656219625,6.15866846549639,18.1137307808717,-0.00868290599678304,69.79870305874 +00:00:51.5867,69.6545386776988,6.16398880599971,18.1293788411756,-0.00867039092440543,69.7958143526899 +00:00:51.5961,69.6545116199177,6.21402606929046,18.276547262619,-0.00856294883051513,69.7929444354784 +00:00:51.6056,69.6544842876902,6.2925534483216,18.5075101421223,-0.0083950490045244,69.7901193631076 +00:00:51.6150,69.6544565921848,6.38310461712794,18.7738371091998,-0.00820166444186913,69.7873535105999 +00:00:51.6244,69.6544285114855,6.47121218772883,19.0329770227318,-0.00801350872036601,69.7846504141141 +00:00:51.6339,69.6544000787712,6.54587325381652,19.252568393578,-0.00785392601317735,69.7820046897109 +00:00:51.6459,69.6543634168089,6.61104203070777,19.4442412667876,-0.00771420221801086,69.7786909080876 +00:00:51.6615,69.6543155097837,6.6429396496105,19.538057792972,-0.00764466835197658,69.7744459863529 +00:00:51.6772,69.65426754195,6.62575852360484,19.487525069426,-0.00767927765758088,69.7702119290976 +00:00:51.6928,69.6542197852282,6.57979829174089,19.352347916885,-0.00777495550842782,69.76594471936 +00:00:51.7084,69.6541723662063,6.52772315507196,19.1991857502117,-0.00788360954980475,69.7616238661928 +00:00:51.7241,69.6541252707878,6.48721150454226,19.080033836889,-0.00796771603078831,69.7572516547328 +00:00:51.7397,69.6540783908044,6.46707755242593,19.0208163306645,-0.00800855875978212,69.7528456034166 +00:00:51.7611,69.6540143273285,6.46978068437889,19.0287667187614,-0.00800021296020375,69.7468067502835 +00:00:51.7824,69.6539501533522,6.49257788104501,19.0958172971912,-0.00794920577011469,69.740787761474 +00:00:51.8038,69.6538857659806,6.51700816637089,19.1676710775614,-0.00789474021545923,69.734805297398 +00:00:51.8252,69.6538212025409,6.53054845025599,19.2074954419294,-0.0078634074993603,69.7288533051106 +00:00:51.8513,69.6537422907443,6.52940980247202,19.2041464778589,-0.00786268083482773,69.7215985955217 +00:00:51.8841,69.6536434470783,6.51530422235434,19.1626594775128,-0.00788869411004225,69.7124885568686 +00:00:51.9168,69.6535447713939,6.50346704549024,19.1278442514419,-0.00790988659323535,69.7033558663068 +00:00:51.9495,69.6534461859192,6.5017755038857,19.1228691290756,-0.00790952412669707,69.6942131300978 +00:00:52.0000,69.6532943572942,6.5078606772192,19.1407666977035,-0.00789050818523456,69.6801541229885 +00:00:52.0017,69.6532890196007,6.50636255901941,19.1363604677042,-0.00789347810603201,69.6796601269589 +00:00:52.0035,69.653283684633,6.50076594621972,19.1198998418227,-0.00790515810410671,69.6791657023995 +00:00:52.0058,69.653276763779,6.4857297342635,19.0756756890103,-0.00793683544263432,69.6785214473179 +00:00:52.0081,69.6532698634769,6.46211785341357,19.0062289806282,-0.00798673949800168,69.6778738829469 +00:00:52.0104,69.6532629923251,6.43075993953535,18.9139998221628,-0.00805310903728798,69.6772216151264 +00:00:52.0148,69.6532498373624,6.35263614060502,18.6842239429559,-0.00821862930588247,69.6759432226192 +00:00:52.0225,69.6532276639378,6.18012573816324,18.1768404063625,-0.00858446190110719,69.6736713695845 +00:00:52.0301,69.6532061460699,5.97887598964266,17.5849293813019,-0.00901152611307694,69.6712934304618 +00:00:52.0378,69.6531853405807,5.77244302045915,16.9777735895857,-0.00944975663009722,69.6688001541531 +00:00:52.0454,69.6531652336826,5.58042326098144,16.4130095911219,-0.00985744636261512,69.6661937448798 +00:00:52.0531,69.6531457512911,5.41735468760122,15.9333961400036,-0.0102036037996867,69.6634862022061 +00:00:52.0607,69.6531267766777,5.29244217424144,15.5660063948278,-0.0104685671656943,69.6606964643574 +00:00:52.0704,69.6531033567296,5.19499849464495,15.279407337191,-0.0106747619554875,69.6571033429344 +00:00:52.0800,69.6530802302148,5.16145708493913,15.1807561321739,-0.0107448065161299,69.6534630157575 +00:00:52.0896,69.6530571382284,5.1821314255013,15.2415630161803,-0.010699314984811,69.6498175642922 +00:00:52.0993,69.653033873205,5.24226563023564,15.4184283242225,-0.0105697400001554,69.6462007280467 +00:00:52.1089,69.6530102967476,5.32500452914457,15.6617780268958,-0.0103920191697082,69.6426349991097 +00:00:52.1186,69.6529863433245,5.41412823523993,15.9239065742351,-0.0102007281357796,69.6391310203566 +00:00:52.1282,69.6529620130989,5.49612008953737,16.1650590868746,-0.0100246666302617,69.6356887544312 +00:00:52.1378,69.6529373574101,5.56141021124808,16.357088856612,-0.00988421284428855,69.6322998479376 +00:00:52.1500,69.6529058281718,5.61247462822781,16.5072783183171,-0.00977371938261663,69.6280629299757 +00:00:52.1667,69.6528624057471,5.62813152585974,16.5533280172345,-0.00973802488446853,69.62229998424 +00:00:52.1803,69.652827144599,5.6041744919514,16.4828661527983,-0.00978716006186862,69.617619231633 +00:00:52.1939,69.6527920771468,5.56289542880499,16.3614571435441,-0.00987320053392566,69.6129079118902 +00:00:52.2074,69.6527572684805,5.51907562397269,16.2325753646256,-0.00996465708384811,69.6081554459715 +00:00:52.2210,69.6527227018833,5.48404037582389,16.1295305171291,-0.0100373947666642,69.603364551285 +00:00:52.2346,69.6526883066486,5.46382073115024,16.0700609739713,-0.0100785552468811,69.5985467230191 +00:00:52.2545,69.6526379363362,5.46021472450928,16.0594550720861,-0.0100833964455113,69.5914631257667 +00:00:52.2744,69.6525875141863,5.47712467469094,16.1091902196792,-0.0100445033409761,69.5843899593033 +00:00:52.2943,69.6525369254921,5.49971159492469,16.1756223380138,-0.00999351190485286,69.5773458745729 +00:00:52.3142,69.6524861689103,5.51594951250956,16.2233809191458,-0.00995606210214058,69.5703310861974 +00:00:52.3341,69.6524353187851,5.52069686266525,16.2373437137213,-0.00994311586951465,69.5633334993215 +00:00:52.3650,69.6523563807122,5.51226983926976,16.2125583507934,-0.009956702546877,69.5524644449667 +00:00:52.3960,69.6522775785758,5.49870105014383,16.1726501474818,-0.00998125607373225,69.541578062994 +00:00:52.4269,69.652198904781,5.4917452535582,16.15219192223,-0.00999170349688338,69.5306755909006 +00:00:52.4578,69.6521202695083,5.49314885841967,16.1563201718226,-0.00998431713039333,69.5197716457768 +00:00:52.5000,69.6520129921816,5.49830731492062,16.1714921027077,-0.00996732547290323,69.5049199244788 +00:00:52.5015,69.6520089758434,5.49718417854639,16.1681887604305,-0.00996949867474335,69.5043642946667 +00:00:52.5031,69.6520049613563,5.49301522395928,16.155927129292,-0.00997817256648094,69.5038083759344 +00:00:52.5053,69.6519993613737,5.48053795734576,16.1192292863111,-0.0100044903123168,69.5030302620158 +00:00:52.5075,69.6519937780451,5.4603819039293,16.0599467762626,-0.0100471984117093,69.5022494609345 +00:00:52.5097,69.6519882187659,5.43318581191582,15.9799582703407,-0.0101049352189177,69.5014647684508 +00:00:52.5134,69.6519789358189,5.37420504085626,15.8064854142831,-0.0102303116256985,69.5001315898868 +00:00:52.5205,69.6519615658084,5.22825352168199,15.3772162402411,-0.0105409169695334,69.4975317823162 +00:00:52.5276,69.6519447183567,5.05317633073441,14.8622833256895,-0.010913812846326,69.4948471045619 +00:00:52.5347,69.6519284545408,4.86791395091824,14.3173939732889,-0.0113085846893178,69.4920675807655 +00:00:52.5418,69.6519127826328,4.68882094433894,13.790649836291,-0.0116902938482031,69.4891918349575 +00:00:52.5488,69.651897663181,4.52877876865146,13.3199375548572,-0.0120313819847675,69.486226273046 +00:00:52.5559,69.6518830202502,4.39688637390413,12.9320187467769,-0.0123123504876734,69.4831832581949 +00:00:52.5630,69.6518687539629,4.29846748293774,12.6425514204051,-0.0125217647547491,69.4800790700857 +00:00:52.5729,69.6518491472157,4.21911145170438,12.4091513285423,-0.0126899611820161,69.475662967697 +00:00:52.5829,69.6518297622021,4.20270475817122,12.3608963475624,-0.0127234539136085,69.471211239397 +00:00:52.5928,69.6518103427472,4.23722040045791,12.4624129425233,-0.0126479615384353,69.4667657032859 +00:00:52.6027,69.6517906935075,4.30624447125848,12.6654249154661,-0.012498623132093,69.462358248445 +00:00:52.6127,69.6517706959386,4.39212311885,12.9180091730882,-0.0123132374154292,69.4580082223897 +00:00:52.6226,69.6517503082399,4.47874954710145,13.1727927855925,-0.0121262812872965,69.4537224404029 +00:00:52.6325,69.6517295540367,4.55353138428085,13.3927393655319,-0.0119646963362755,69.4494970369759 +00:00:52.6425,69.6517085042245,4.60840885951172,13.5541437044462,-0.0118457166648146,69.445320433166 +00:00:52.6549,69.651681753922,4.6446251271877,13.6606621387874,-0.0117662678758458,69.4401061256548 +00:00:52.6674,69.6516548893922,4.64721509585384,13.6682796936878,-0.0117587667364176,69.4349113272006 +00:00:52.6799,69.6516280768102,4.6245613339298,13.6016509821465,-0.0118052799280301,69.4297089143215 +00:00:52.6924,69.6516014282579,4.58808612757632,13.4943709634598,-0.0118813728553192,69.4244805912983 +00:00:52.7049,69.651574991776,4.54912879707527,13.3797905796331,-0.0119627828563466,69.4192185144756 +00:00:52.7174,69.6515487579916,4.51656160488209,13.2840047202414,-0.0120305190255316,69.4139242128988 +00:00:52.7326,69.6515171886594,4.49280697779393,13.2141381699821,-0.0120789745383564,69.4074843089417 +00:00:52.7522,69.6514762681196,4.48742162891489,13.1982989085732,-0.0120873799682687,69.3990933000964 +00:00:52.7719,69.6514353143964,4.50196956220987,13.2410869476761,-0.0120531018550566,69.3907098844385 +00:00:52.7916,69.6513942125585,4.52299611378947,13.3029297464396,-0.0120049513629824,69.382352834571 +00:00:52.8113,69.6513529525314,4.53899870486237,13.3499961907717,-0.0119675632473043,69.3740237940733 +00:00:52.8309,69.6513115979579,4.54453660085154,13.3662841201516,-0.0119525914248727,69.3657123629087 +00:00:52.8590,69.6512525597938,4.5381539537929,13.3475116288026,-0.0119618262674649,69.3538467443892 +00:00:52.8871,69.6511936283406,4.52578146059285,13.3111219429201,-0.0119838968635147,69.3419680881287 +00:00:52.9152,69.6511348160943,4.51757555318675,13.2869869211375,-0.0119970407932799,69.33007435147 +00:00:52.9433,69.6510760595704,4.51670538083309,13.2844275906856,-0.0119944632482835,69.3181759126125 +00:00:52.9901,69.6509782044137,4.5210679562554,13.2972586948688,-0.0119777180778659,69.2983829006781 +00:00:53.0000,69.6509575132602,4.52245858651809,13.3013487838767,-0.0119731743428143,69.2942021317412 +00:00:53.0013,69.6509547074353,4.52173242905941,13.2992130266453,-0.0119745198131957,69.2936353523751 +00:00:53.0026,69.6509519027006,4.51900279220419,13.2911846829535,-0.0119801616449324,69.293068404688 +00:00:53.0044,69.6509481737061,4.51113986412417,13.2680584238946,-0.0119967416440471,69.2923129760933 +00:00:53.0062,69.6509444532787,4.49830492002205,13.2303085883002,-0.0120239846532856,69.2915561638035 +00:00:53.0080,69.6509407453551,4.48074938459433,13.1786746605716,-0.0120613522974994,69.2907973237115 +00:00:53.0108,69.6509348247481,4.44391832835921,13.0703480245859,-0.0121398913343013,69.2895721440348 +00:00:53.0175,69.6509213968314,4.32794369227413,12.7292461537474,-0.0123876133942611,69.2867038299377 +00:00:53.0241,69.6509083715414,4.18002593342661,12.294193921843,-0.0127039343282738,69.2837698688224 +00:00:53.0307,69.6508958184587,4.01597498924918,11.8116911448505,-0.0130549734242606,69.2807588534567 +00:00:53.0373,69.6508837664452,3.84995160423398,11.3233870712764,-0.0134103544356999,69.2776660360344 +00:00:53.0439,69.6508722049512,3.69373124956538,10.8639154398982,-0.0137447868142743,69.2744931212708 +00:00:53.0506,69.6508610910967,3.55639562347658,10.4599871278723,-0.0140387378081576,69.2712471135274 +00:00:53.0572,69.6508503582381,3.44422164289304,10.1300636555678,-0.014278684342496,69.2679389182509 +00:00:53.0654,69.650837446573,3.34515881786728,9.83870240549199,-0.0144902250641092,69.2637729277308 +00:00:53.0736,69.6508248260245,3.29085314003271,9.67897982362562,-0.0146055693829436,69.2595596075332 +00:00:53.0818,69.6508123351422,3.27800404198758,9.64118835878699,-0.0146317783427735,69.2553254320418 +00:00:53.0900,69.6507998302349,3.29982876267686,9.70537871375547,-0.0145834236410455,69.2510939695914 +00:00:53.0982,69.6507871970418,3.34734484324005,9.84513189188249,-0.0144798231937374,69.2468839628175 +00:00:53.1064,69.6507743566916,3.4107031475827,10.0314798458315,-0.0143421644927727,69.2427083481161 +00:00:53.1146,69.6507612668154,3.48036104014938,10.2363560004393,-0.0141909740153,69.2385740722721 +00:00:53.1228,69.6507479187314,3.5479940970935,10.4352767561574,-0.0140441529982542,69.2344825552941 +00:00:53.1310,69.6507343317608,3.60710490553024,10.6091320750889,-0.0139156687142217,69.2304306241911 +00:00:53.1413,69.6507171392393,3.66224335838341,10.7713039952453,-0.0137953927686425,69.2254269065252 +00:00:53.1540,69.6506954375812,3.69881079250336,10.8788552720687,-0.0137146214033168,69.2192311836746 +00:00:53.1667,69.6506736161706,3.70226534458745,10.8890157193749,-0.0137050423069494,69.213056070027 +00:00:53.1795,69.6506518420293,3.68073640741295,10.8256953159204,-0.0137491822248772,69.206874171338 +00:00:53.1922,69.6506302281108,3.64554527287093,10.7221919790321,-0.0138227062560487,69.2006669589768 +00:00:53.2050,69.6506088225634,3.60798932316039,10.6117333034129,-0.0139013238666725,69.1944265321801 +00:00:53.2177,69.6505876153813,3.57686792918511,10.5201997917209,-0.0139661074390217,69.1881545302647 +00:00:53.2305,69.6505665561678,3.55720607237984,10.4623708011172,-0.0140062419244617,69.18185922115 +00:00:53.2477,69.6505382135484,3.54984521800489,10.4407212294262,-0.0140191511940737,69.1733412833823 +00:00:53.2649,69.6505098677848,3.55911546132385,10.4679866509525,-0.0139962723605586,69.1648256442578 +00:00:53.2821,69.6504814255727,3.57610129403389,10.5179449824526,-0.0139567884336853,69.1563276198623 +00:00:53.2994,69.6504528589139,3.59210399019169,10.5650117358579,-0.0139194206700491,69.1478518062324 +00:00:53.3166,69.6504241945377,3.60154185518675,10.592770162314,-0.0138961841329256,69.1393938141372 +00:00:53.3391,69.6503866011107,3.60235416233952,10.5951593009986,-0.0138906124384252,69.1283262351523 +00:00:53.3669,69.6503404239851,3.59295515542704,10.5675151630207,-0.0139061506734794,69.1147115754739 +00:00:53.3946,69.6502943620024,3.5821506591864,10.5357372329012,-0.0139247196811804,69.1010826037421 +00:00:53.4223,69.6502483933247,3.5769531814206,10.52045053359,-0.0139312144435542,69.0874429063068 +00:00:53.4559,69.6501927480993,3.57808238074778,10.5237717080817,-0.0139230882944323,69.0709245134297 +00:00:53.4895,69.6501370778649,3.58152342456798,10.5338924251999,-0.0139099817131417,69.0544169845767 +00:00:53.5000,69.6501197572173,3.5823886465834,10.5364371958335,-0.0139063476981681,69.0492861751663 +00:00:53.5011,69.650117783666,3.58182948709032,10.5347926090892,-0.0139073515042999,69.0487016748367 +00:00:53.5023,69.6501158108471,3.57981796701946,10.5288763735867,-0.0139114860771182,69.0481170625475 +00:00:53.5040,69.650113094657,3.57370696544656,10.5109028395487,-0.0139243815359626,69.0473106879035 +00:00:53.5056,69.6501103846733,3.56354022789051,10.4810006702662,-0.013946020284365,69.0465033087423 +00:00:53.5073,69.6501076838709,3.54945034117086,10.4395598269731,-0.0139761171155142,69.0456944358554 +00:00:53.5096,69.6501037672351,3.52259869422565,10.3605843947813,-0.0140336006557178,69.0445107751465 +00:00:53.5158,69.6500939403929,3.42748453853242,10.0808368780365,-0.0142376454344072,69.041457353123 +00:00:53.5219,69.6500844241208,3.30268521704992,9.71378005014683,-0.0145057571834049,69.0383530656354 +00:00:53.5280,69.6500752813044,3.16059237616464,9.29585992989599,-0.0148112476536482,69.0351875533169 +00:00:53.5341,69.6500665455697,3.01254810196778,8.86043559402288,-0.0151296691919551,69.0319552654754 +00:00:53.5402,69.6500582209763,2.86831073769985,8.43620805205838,-0.0154399657682061,69.0286555152433 +00:00:53.5463,69.6500502862417,2.73582088188872,8.04653200555506,-0.0157249824684767,69.0252917891165 +00:00:53.5524,69.6500427001798,2.62107833331094,7.70905392150275,-0.0159717390230143,69.0218708554084 +00:00:53.5586,69.650035407344,2.52811273660205,7.43562569588837,-0.0161715021380695,69.0184018373523 +00:00:53.5665,69.6500262781536,2.44327485250371,7.18610250736384,-0.0163534202497798,69.0138545530602 +00:00:53.5744,69.6500173869299,2.39828694276237,7.05378512577168,-0.0164492392551624,69.0092684359892 +00:00:53.5823,69.6500085957263,2.38979867448416,7.02881963083576,-0.016466170290013,69.0046662250412 +00:00:53.5902,69.6499997825548,2.41169531488696,7.09322151437342,-0.0164174186216279,69.0000680335012 +00:00:53.5982,69.649990850632,2.45612597793313,7.22389993509744,-0.016319955545018,68.9954898204325 +00:00:53.6061,69.6499817329235,2.51457311138008,7.39580326876495,-0.0161921985044611,68.990942638943 +00:00:53.6140,69.6499723928854,2.57879404942829,7.58468838067146,-0.0160519698918869,68.9864325130594 +00:00:53.6219,69.6499628221593,2.64155626316016,7.76928312694166,-0.015914904682319,68.9819608185007 +00:00:53.6298,69.6499530360255,2.69713552718602,7.93275155054711,-0.0157933736620202,68.9775250332776 +00:00:53.6378,69.6499430674707,2.74157566993915,8.06345785276221,-0.0156959238866671,68.9731197167368 +00:00:53.6484,69.6499294998647,2.78022687665732,8.17713787252151,-0.0156105112366428,68.9672453556465 +00:00:53.6617,69.6499123863385,2.79604525889066,8.22366252614899,-0.015573980061455,68.9599325438909 +00:00:53.6726,69.6498982704721,2.78601427159242,8.19415962233064,-0.0155937358560016,68.9539150608823 +00:00:53.6835,69.6498842364667,2.76206781968329,8.12372888142144,-0.015643576425018,68.9478848223262 +00:00:53.6945,69.6498703369423,2.73153953318282,8.03393980347888,-0.0157076532393803,68.9418331490378 +00:00:53.7054,69.6498565888301,2.70112281411756,7.94447886505166,-0.0157714963018377,68.935757246219 +00:00:53.7163,69.6498429796407,2.67587448749999,7.87021908088233,-0.0158241687963408,68.9296591717843 +00:00:53.7297,69.6498264359082,2.65615886034496,7.81223194219106,-0.015864443632933,68.9221637470361 +00:00:53.7472,69.6498049911225,2.64911983941083,7.7915289394436,-0.0158765828799308,68.9123864765141 +00:00:53.7646,69.6497835435354,2.65793581962834,7.81745829302454,-0.0158544197740437,68.9026115730969 +00:00:53.7821,69.6497620035219,2.67398104309413,7.86465012674744,-0.0158166125814673,68.8928538288158 +00:00:53.7995,69.6497403453165,2.68888907912809,7.90849729155321,-0.0157812647487885,68.8831174968671 +00:00:53.8170,69.649718596094,2.69738180002189,7.93347588241733,-0.0157598004883668,68.8733980913466 +00:00:53.8381,69.6496922067845,2.69774606192726,7.93454724096252,-0.015755279166236,68.8616325031424 +00:00:53.8592,69.649665845346,2.69082287642968,7.91418493067552,-0.0157665366501021,68.8498650975118 +00:00:53.8804,69.649639554482,2.6820676139322,7.88843415862413,-0.0157817645068438,68.8380888202674 +00:00:53.9015,69.6496133327088,2.67583622605576,7.87010654722283,-0.0157915294827988,68.8263039149286 +00:00:53.9288,69.6495796029082,2.67362727470678,7.86360963149054,-0.0157915084775882,68.8111183079833 +00:00:53.9683,69.6495305865588,2.67604807356676,7.87072962813753,-0.0157792814954733,68.7890599950745 +00:00:54.0000,69.6494913908634,2.67811065803861,7.87679605305474,-0.0157692335869585,68.7714410829739 +00:00:54.0010,69.6494901201853,2.67774473492925,7.87571980861545,-0.0157698461414851,68.7708702293136 +00:00:54.0020,69.6494888498839,2.67640168368678,7.87176965790231,-0.0157725769643526,68.7702993199037 +00:00:54.0035,69.64948698921,2.67186728284182,7.8584331848289,-0.0157821419863654,68.7694617728988 +00:00:54.0050,69.6494851328468,2.66407311608071,7.83550916494327,-0.0157987741284325,68.7686235270856 +00:00:54.0065,69.6494832830121,2.65305448675108,7.80310143162082,-0.0158223973080915,68.7677842156829 +00:00:54.0085,69.6494809030825,2.63439882646328,7.74823184253907,-0.0158625011071875,68.7666960540461 +00:00:54.0124,69.6494761434906,2.5836604529757,7.59900133228147,-0.0159718190307599,68.7644793172792 +00:00:54.0185,69.6494690342939,2.47902667670642,7.29125493148948,-0.0161976592776666,68.761028005633 +00:00:54.0245,69.6494622487714,2.35172883315893,6.91684950929098,-0.0164727195787233,68.757523370474 +00:00:54.0306,69.6494558335513,2.21298112802845,6.50876802361309,-0.0167727028353484,68.7539576811993 +00:00:54.0367,69.6494498075931,2.07280736634423,6.09649225395362,-0.017075871014379,68.7503277820761 +00:00:54.0428,69.6494441638748,1.93965127474994,5.70485669044099,-0.017363892130129,68.7466348175953 +00:00:54.0488,69.6494388738681,1.82020034255477,5.35353041927872,-0.017622228393387,68.7428834957613 +00:00:54.0549,69.6494338927024,1.71930799559434,5.05678822233628,-0.0178403131019833,68.7390812361568 +00:00:54.0610,69.6494291643701,1.6400066794819,4.82354905729972,-0.0180115303045438,68.7352373092182 +00:00:54.0671,69.6494246267087,1.58361292627592,4.65768507728212,-0.0181329933128235,68.7313620111434 +00:00:54.0731,69.6494202159528,1.54991275652769,4.55856693096378,-0.0182051464361305,68.7274659087462 +00:00:54.0792,69.6494158706803,1.53740700527737,4.52178530963934,-0.018231234049029,68.7235591840497 +00:00:54.0853,69.6494115350218,1.54359362655954,4.53998125458688,-0.0182166871743764,68.7196511006936 +00:00:54.0914,69.6494071610615,1.56526502500167,4.60372066176963,-0.0181684759421647,68.7157496046094 +00:00:54.0974,69.6494027104126,1.59880100746609,4.70235590431203,-0.0180944708578569,68.7118610618461 +00:00:54.1035,69.649398155001,1.64044119628713,4.82482704790331,-0.0180028486672135,68.7079901280053 +00:00:54.1096,69.649393477133,1.68652435631738,4.96036575387464,-0.0179015705553357,68.7041397369174 +00:00:54.1174,69.6493872310146,1.74690845708024,5.13796605023599,-0.0177688863196761,68.6991895594924 +00:00:54.1253,69.6493807744199,1.80321217273858,5.30356521393701,-0.0176450779114538,68.6942746775418 +00:00:54.1331,69.6493741299978,1.85094436506511,5.4439540148974,-0.0175399059321447,68.6893913341061 +00:00:54.1427,69.6493658862377,1.89317718202706,5.56816818243252,-0.0174463908006109,68.6835088520451 +00:00:54.1545,69.6493554125434,1.92029619741006,5.64792999238252,-0.0173853033520556,68.6761987377729 +00:00:54.1644,69.6493466451561,1.92264900217332,5.65485000639213,-0.0173784156964009,68.6701425048661 +00:00:54.1743,69.6493378979753,1.91044244374662,5.61894836396065,-0.0174031819267759,68.6640835379167 +00:00:54.1841,69.6493292264094,1.88860113962682,5.55470923419652,-0.0174489009914272,68.6580126466374 +00:00:54.1940,69.6493206626221,1.8623264602575,5.47743076546322,-0.0175042672176348,68.6519244943873 +00:00:54.2039,69.6493122165309,1.83627940172307,5.40082176977374,-0.0175591457713242,68.6458174338041 +00:00:54.2137,69.6493038794502,1.81403814316716,5.33540630343282,-0.0176057528397455,68.6396929037111 +00:00:54.2266,69.6492931110682,1.79430712870901,5.27737390796766,-0.0176463619902146,68.6316732950197 +00:00:54.2434,69.6492791697977,1.78508785540734,5.25025839825688,-0.0176633995812985,68.6211949321637 +00:00:54.2602,69.6492652450108,1.79082352244741,5.26712800719827,-0.0176478946987678,68.6107156290301 +00:00:54.2770,69.6492512509968,1.80451265187104,5.30739015256188,-0.017615077720522,68.6002496140535 +00:00:54.2939,69.6492371542989,1.81873802323893,5.34922948011451,-0.0175810907161901,68.5898024427926 +00:00:54.3107,69.6492229688733,1.82822739328558,5.37713939201641,-0.0175574116231781,68.5793717986757 +00:00:54.3275,69.6492087365234,1.83097491306047,5.38522033253079,-0.0175484104698132,68.5689507398213 +00:00:54.3512,69.6491886454147,1.82618070898606,5.37111973231193,-0.0175545882560595,68.5542305454867 +00:00:54.3750,69.6491686231224,1.81717258632325,5.34462525389191,-0.0175699489676095,68.5395024906344 +00:00:54.3987,69.6491486829304,1.80994091674719,5.32335563749173,-0.0175814448368682,68.5247643651753 +00:00:54.4225,69.6491287949793,1.80720095191909,5.31529691740909,-0.0175831566481964,68.5100211291655 +00:00:54.4564,69.6491003441345,1.8085464407243,5.31925423742441,-0.0175741306913659,68.4889274937143 +00:00:54.4904,69.6490718739256,1.81083227884008,5.32597729070611,-0.0175630559727921,68.4678443902129 +00:00:54.5000,69.649063879835,1.81116678157743,5.32696112228656,-0.0175606178384877,68.4619301019579 +00:00:54.5008,69.6490632065132,1.81096894174364,5.32637924042246,-0.0175609054578748,68.4614320560396 +00:00:54.5016,69.649062533364,1.81026199322209,5.32429998006496,-0.0175623034851164,68.4609339854848 +00:00:54.5029,69.6490614064371,1.80729211488909,5.31556504379143,-0.0175685399538307,68.4600990532081 +00:00:54.5042,69.649060282156,1.80186268524275,5.29959613306692,-0.017580141181187,68.4592636921823 +00:00:54.5056,69.649059162038,1.79391029458955,5.27620674879279,-0.0175972457640024,68.4584276499401 +00:00:54.5069,69.6490580476108,1.7835485463104,5.24573101856001,-0.0176196062720219,68.4575906722665 +00:00:54.5092,69.6490561691554,1.76093030551632,5.17920678093035,-0.0176685344284949,68.4561635369355 +00:00:54.5148,69.6490517266582,1.68458160467314,4.95465177845042,-0.0178340995722945,68.4526656158045 +00:00:54.5204,69.6490475121231,1.58413652653635,4.65922507804809,-0.018052280943424,68.4491299487888 +00:00:54.5260,69.6490435739133,1.46839790850134,4.31881737794512,-0.018303897949738,68.4455484758885 +00:00:54.5315,69.6490399414185,1.34554778666401,3.95749349018826,-0.0185711104023564,68.4419162914252 +00:00:54.5371,69.6490366243365,1.22280153343684,3.59647509834365,-0.0188381717719756,68.4382317664169 +00:00:54.5427,69.6490336149596,1.10626239365166,3.25371292250488,-0.0190917484945765,68.4344961707599 +00:00:54.5483,69.6490308912544,1.00083032104984,2.94361859132305,-0.0193211229634404,68.4307131628892 +00:00:54.5539,69.6490284201136,0.910152983048413,2.67692053837769,-0.0195183055455248,68.4268882499564 +00:00:54.5597,69.649026042425,0.83318811908708,2.45055329143259,-0.019685501201942,68.4228185195676 +00:00:54.5656,69.6490238463234,0.776610522314658,2.28414859504311,-0.0198081529222018,68.4187187249359 +00:00:54.5704,69.6490221486477,0.745618945390581,2.19299689820759,-0.0198750629936156,68.4153477967604 +00:00:54.5752,69.6490205053645,0.727892465443599,2.14086019248117,-0.0199129695408554,68.4119679412993 +00:00:54.5800,69.6490188879834,0.722446908072304,2.12484384727148,-0.0199240191827708,68.4085839108336 +00:00:54.5849,69.6490172707484,0.727958343903582,2.14105395265759,-0.0199111040077519,68.4052000022587 +00:00:54.5897,69.6490156310815,0.742859637174268,2.18488128580667,-0.0198776499916571,68.4018199826688 +00:00:54.5945,69.6490139500227,0.765428132389416,2.25125921291005,-0.019827424648924,68.3984470157093 +00:00:54.5993,69.6490122125029,0.793868003332845,2.33490589215543,-0.0197643563411749,68.3950836157962 +00:00:54.6041,69.6490104074337,0.826385745361952,2.43054630988809,-0.0196923686577262,68.3917316330773 +00:00:54.6102,69.6490080007535,0.870755125885699,2.56104448789911,-0.019594223852827,68.3874831580098 +00:00:54.6164,69.6490054681259,0.915755858146953,2.69339958278516,-0.0194946997728589,68.3832559344032 +00:00:54.6242,69.6490020427696,0.969747945338383,2.85219983923054,-0.0193752021595825,68.377866652565 +00:00:54.6321,69.6489984365939,1.01601271211127,2.98827268268021,-0.0192726066311633,68.372507929388 +00:00:54.6418,69.6489937612003,1.0584281772733,3.11302405080381,-0.0191780885845976,68.365886096177 +00:00:54.6512,69.648989095507,1.08211868631901,3.18270201858532,-0.0191245805814584,68.3595066642073 +00:00:54.6607,69.6489843616753,1.08930511032318,3.20383855977406,-0.0191071698472613,68.3531391643519 +00:00:54.6701,69.6489796254606,1.08257303613583,3.18403834157597,-0.0191202056144267,68.3467726249765 +00:00:54.6795,69.6489749388784,1.06577246585564,3.13462489957542,-0.0191552715541995,68.3403983655094 +00:00:54.6890,69.6489703363854,1.04323637510253,3.06834227971333,-0.019202892709716,68.3340106339574 +00:00:54.6984,69.6489658341864,1.01910543604415,2.99736892954162,-0.0192540113790814,68.3276067234837 +00:00:54.7078,69.6489614320842,0.996827367267147,2.93184519784455,-0.0193010824994672,68.3211866646785 +00:00:54.7201,69.6489558392838,0.974699024534287,2.86676183686555,-0.0193473298668767,68.3128304232036 +00:00:54.7354,69.6489489610399,0.960235156324614,2.82422104801357,-0.0193762531524207,68.302346713223 +00:00:54.7472,69.6489437047743,0.958836269246583,2.82010667425465,-0.0193772011450203,68.2942567934457 +00:00:54.7590,69.648938439604,0.964032434035376,2.83538951186875,-0.0193637067082122,68.2861692446482 +00:00:54.7709,69.6489331369685,0.973052170939971,2.86191814982344,-0.0193418368277562,68.2780888382056 +00:00:54.7827,69.6489277835964,0.983068219699091,2.89137711676203,-0.0193177827688281,68.2700177919985 +00:00:54.7945,69.6489223799886,0.991780857391881,2.91700252174083,-0.0192965820087027,68.2619560230054 +00:00:54.8124,69.6489141549847,0.999470275251231,2.93961845662127,-0.0192765421837029,68.2497936904538 +00:00:54.8317,69.6489052131812,1.00025559687135,2.94192822609221,-0.0192713652617747,68.2366337268363 +00:00:54.8510,69.6488962874258,0.995352405007148,2.92750707355044,-0.0192786570626916,68.2234734385472 +00:00:54.8704,69.6488874111293,0.988385576089015,2.90701640026181,-0.0192904763444497,68.2103072379789 +00:00:54.8897,69.6488785890489,0.982595706651761,2.88998737250518,-0.019299719443719,68.1971343274419 +00:00:54.9137,69.648867705573,0.979306307277243,2.88031266846248,-0.0193026579178938,68.1808073890652 +00:00:54.9412,69.6488551963757,0.979703063113242,2.88147959739189,-0.0192968679899617,68.1620152256481 +00:00:54.9688,69.648842677147,0.981572853504744,2.88697898089631,-0.0192878474013524,68.1432295314046 +00:00:54.9964,69.6488301458135,0.982193466352369,2.88880431280109,-0.0192815694201082,68.1244506512164 +00:00:55.0000,69.6488285170548,0.982126353512175,2.88860692209463,-0.0192810782634674,68.1220114291452 +00:00:55.0005,69.6488282638046,0.982036159735664,2.88834164628136,-0.0192811769889581,68.121632147923 +00:00:55.0011,69.648828010606,0.981756207913012,2.88751825856768,-0.0192816922940318,68.1212528600365 +00:00:55.0021,69.6488275475752,0.980395887684885,2.88351731672025,-0.019284496934334,68.1205585497155 +00:00:55.0029,69.6488271735584,0.978376903790715,2.87757912879622,-0.0192887822970174,68.1199966492851 +00:00:55.0037,69.6488268004876,0.975440840629935,2.86894364891157,-0.0192950810640253,68.1194345947195 +00:00:55.0046,69.6488264287132,0.971582843692786,2.85759659909643,-0.0193034039609372,68.1188723273298 +00:00:55.0058,69.6488258707087,0.964080215149109,2.8355300445562,-0.0193196537425374,68.1180228186303 +00:00:55.0080,69.6488249212561,0.946751057082146,2.78456193259455,-0.019357318141245,68.1165560091174 +00:00:55.0113,69.6488234657731,0.909375753830182,2.67463457008877,-0.0194387798984079,68.114232291073 +00:00:55.0154,69.6488217997995,0.850504988923811,2.50148526154062,-0.0195673313093386,68.1114105859253 +00:00:55.0195,69.6488202559711,0.779804708688591,2.2935432608488,-0.0197218865355189,68.1085685227864 +00:00:55.0236,69.6488188534031,0.700695750565526,2.06086985460449,-0.0198949430311612,68.1057028951243 +00:00:55.0277,69.6488176051862,0.616379070918399,1.81287962034823,-0.020079477174998,68.1028115044976 +00:00:55.0318,69.648816518537,0.529792453324383,1.55821309801289,-0.0202690389194577,68.0998931359719 +00:00:55.0359,69.6488155953212,0.443586936292789,1.30466745968467,-0.0204578036571904,68.0969474710998 +00:00:55.0400,69.6488148326538,0.360102516904293,1.05912504971851,-0.0206406261076867,68.0939749879074 +00:00:55.0454,69.6488140592431,0.257953606631955,0.758687078329279,-0.0208643083059639,68.0900239776446 +00:00:55.0524,69.6488134020571,0.143345246714358,0.421603666806936,-0.0211151779831857,68.0848299336031 +00:00:55.0582,69.6488131160159,0.0669136932077627,0.196804980022831,-0.021282331102911,68.0804959719907 +00:00:55.0640,69.6488130098612,0.00905186686742081,0.0266231378453553,-0.0214086540053338,68.0761320234007 +00:00:55.0686,69.6488130229561,-0.0231751981050288,-0.0681623473677319,-0.0214809945827067,68.0726705696323 +00:00:55.0731,69.6488130919615,-0.0437687991880322,-0.128731762317742,-0.0215273988491358,68.069199568976 +00:00:55.0777,69.6488131929553,-0.0533994042145934,-0.157057071219392,-0.0215486793082149,68.0657231180159 +00:00:55.0823,69.6488133038814,-0.0530286749865489,-0.155966691136908,-0.0215470360323774,68.0622450557519 +00:00:55.0868,69.648813404912,-0.0438430178249452,-0.128950052426309,-0.0215251860060407,68.0587688491494 +00:00:55.0914,69.6488134788613,-0.0271930308132663,-0.0799795023919597,-0.0214862239871852,68.055297505172 +00:00:55.0960,69.6488135114873,-0.00453216486738314,-0.0133298966687739,-0.0214334814725032,68.0518335153139 +00:00:55.1006,69.6488134916521,0.0226459964722802,0.0666058719772946,-0.0213723348247024,68.0483786386078 +00:00:55.1051,69.6488134113459,0.0528681412125319,0.155494532978035,-0.0213050004126091,68.0449341047361 +00:00:55.1097,69.6488132655913,0.0847335088904659,0.249216202619017,-0.0212340479554738,68.0415007030623 +00:00:55.1153,69.6488129972013,0.12376068018476,0.364002000543412,-0.0211471549574868,68.0373382963475 +00:00:55.1208,69.6488126306187,0.161334020130409,0.474511823912967,-0.0210634624799183,68.0331925700757 +00:00:55.1283,69.6488119942838,0.206602957129371,0.607655756262855,-0.0209624888721716,68.0276304951902 +00:00:55.1386,69.6488109050038,0.254492791062858,0.748508209008407,-0.0208552558033219,68.0200442481829 +00:00:55.1461,69.6488099815979,0.277793328840285,0.817039202471427,-0.0208026374554851,68.0145114419914 +00:00:55.1536,69.648808995251,0.290524624884139,0.854484190835703,-0.0207732869294672,68.0089895570815 +00:00:55.1612,69.6488079813648,0.293452020928798,0.863094179202346,-0.0207655215501097,68.0034726479898 +00:00:55.1687,69.6488069712215,0.288082125277098,0.847300368462053,-0.0207760271320288,67.9979554604824 +00:00:55.1762,69.6488059901748,0.276368327769943,0.812848022852774,-0.0208005055025757,67.9924337352488 +00:00:55.1837,69.6488050565457,0.260455571748818,0.76604579926123,-0.020834235703356,67.9869043936615 +00:00:55.1912,69.6488041813094,0.242460503006119,0.713119126488585,-0.0208725576295424,67.9813655905888 +00:00:55.1988,69.648803368479,0.224294253991297,0.659688982327344,-0.0209112621966862,67.9758166503487 +00:00:55.2063,69.6488026160247,0.20753477307866,0.610396391407822,-0.0209468727680974,67.9702579126806 +00:00:55.2174,69.6488015973108,0.187878915535804,0.55258504569354,-0.0209882465637216,67.9620399894642 +00:00:55.2293,69.6488005945598,0.17486914623084,0.514321018325999,-0.0210148431745688,67.9532230219795 +00:00:55.2389,69.6487998185924,0.170647533070702,0.501904509031475,-0.0210224601228117,67.9460426758503 +00:00:55.2486,69.6487990507326,0.171470899688572,0.504326175554624,-0.0210189569914267,67.9388615433548 +00:00:55.2583,69.6487982712951,0.176062779903865,0.517831705599603,-0.0210071454249451,67.9316829347132 +00:00:55.2680,69.6487974668758,0.182903513238425,0.537951509524779,-0.0209903743776343,67.9245091043903 +00:00:55.2776,69.6487966307039,0.190502521030378,0.560301532442288,-0.0209719297555011,67.9173411916484 +00:00:55.2873,69.6487957620904,0.197596905210862,0.58116736826724,-0.0209545963218114,67.9101793128991 +00:00:55.3010,69.6487944841782,0.205016953150391,0.602991038677621,-0.0209358344953204,67.9000213618592 +00:00:55.3182,69.6487928416066,0.208952200637185,0.614565295991721,-0.020924154221173,67.8873156805288 +00:00:55.3322,69.6487914993321,0.208023120742951,0.611832708067502,-0.0209237739144895,67.877022631192 +00:00:55.3461,69.6487901704611,0.204501691989768,0.601475564675789,-0.0209291150507308,67.8667285208131 +00:00:55.3600,69.6487888670017,0.199852672892274,0.587801979094922,-0.0209369469484461,67.8564313273077 +00:00:55.3739,69.6487875920539,0.195421108677952,0.574767966699859,-0.0209443015116855,67.8461305276779 +00:00:55.3918,69.6487859882984,0.191466902613716,0.563137948863871,-0.0209499152958579,67.8328973521754 +00:00:55.4159,69.6487838647964,0.18956550138149,0.557545592298499,-0.0209499307239308,67.8151203363441 +00:00:55.4399,69.64878174925,0.190292451869398,0.559683681968819,-0.020944143607802,67.7973455300472 +00:00:55.4639,69.6487796250315,0.191593845030274,0.56351130891257,-0.020937088504732,67.7795757330693 +00:00:55.4879,69.648777493763,0.191881266072526,0.564356664919194,-0.0209322751413716,67.7618106705161 +00:00:55.5000,69.6487764291918,0.191441699563089,0.56306382224438,-0.0209311605322969,67.752938653678 +00:00:55.5004,69.6487763919352,0.191385747271067,0.562899256679608,-0.0209312111553859,67.7526279196107 +00:00:55.5008,69.648776354703,0.191244258344929,0.562483112779203,-0.0209314508644126,67.752317182505 +00:00:55.5014,69.6487762983969,0.190743923680928,0.561011540238022,-0.0209324462007429,67.7518463835621 +00:00:55.5021,69.6487762423053,0.189817215394694,0.558285927631454,-0.0209343840851283,67.7513755509467 +00:00:55.5027,69.6487761865604,0.188400041080814,0.554117767884748,-0.0209374062211754,67.7509046623546 +00:00:55.5033,69.6487761313097,0.186465288595787,0.548427319399372,-0.0209415725698949,67.7504336929162 +00:00:55.5041,69.6487760624895,0.183277083248227,0.539050244847727,-0.0209484808293256,67.7498386759578 +00:00:55.5053,69.6487759696998,0.177536597060662,0.522166461943124,-0.0209609781622009,67.7490158718465 +00:00:55.5068,69.648775847284,0.167180481301177,0.491707297944638,-0.0209836062606947,67.7478778923253 +00:00:55.5089,69.6487756956263,0.149041311868946,0.438356799614546,-0.0210233489346296,67.7463367572017 +00:00:55.5117,69.6487755228162,0.117738663200699,0.346290185884408,-0.0210920721555528,67.7442443690722 +00:00:55.5153,69.6487753679534,0.0672748828710778,0.197867302561994,-0.0212030286834566,67.7415133589235 +00:00:55.5190,69.6487753057421,0.00782223939806178,0.0230065864648876,-0.0213338826172989,67.7387668004243 +00:00:55.5227,69.6487753493313,-0.0582963410569363,-0.171459826638048,-0.0214849228466199,67.7360020527201 +00:00:55.5263,69.6487755082367,-0.128873213667321,-0.379038863727414,-0.0216468717146535,67.733217218071 +00:00:55.5300,69.6487757883321,-0.201843345033729,-0.593656897158028,-0.0218143656849324,67.730411182079 +00:00:55.5336,69.6487761920962,-0.275299270756261,-0.809703737518416,-0.0219830119013331,67.7275834880477 +00:00:55.5384,69.6487769119676,-0.369819676272255,-1.08770493021252,-0.0222000484264928,67.7238193230375 +00:00:55.5446,69.6487781306088,-0.482275144454251,-1.41845630721839,-0.0224582644677811,67.7189369899928 +00:00:55.5508,69.6487796494257,-0.580242816231406,-1.70659651832767,-0.0226831478662882,67.7140020871715 +00:00:55.5570,69.6487814218739,-0.659836341617298,-1.94069512240382,-0.0228657092292592,67.709022789218 +00:00:55.5632,69.6487833926108,-0.718843196595795,-2.11424469586998,-0.0230008170907434,67.7040088239408 +00:00:55.5694,69.6487855022036,-0.756677806862692,-2.22552296136086,-0.023087095777524,67.6989706443786 +00:00:55.5745,69.6487872980684,-0.772359028486313,-2.27164420143033,-0.0231224449886159,67.6948253975536 +00:00:55.5796,69.648789116068,-0.775305863693658,-2.28031136380488,-0.0231284069635662,67.6906764046384 +00:00:55.5846,69.6487909279739,-0.767018341562096,-2.25593629871205,-0.023108439138818,67.6865286352701 +00:00:55.5897,69.6487927095979,-0.749288939754081,-2.20379099927671,-0.0230666762612253,67.6823863483727 +00:00:55.5948,69.6487944411222,-0.724086481410247,-2.12966612179484,-0.0230076618033634,67.6782530337072 +00:00:55.5999,69.6487961073882,-0.693450466513309,-2.03956019562738,-0.022936103358423,67.6741313607163 +00:00:55.6050,69.6487976979733,-0.659395477123958,-1.93939846212929,-0.0228566514068682,67.6700231649408 +00:00:55.6100,69.6487992070475,-0.623828134725333,-1.8347886315451,-0.0227737072330501,67.6659294731707 +00:00:55.6151,69.648800633046,-0.588478858137879,-1.73082017099376,-0.0226912651998185,67.661850561188 +00:00:55.6214,69.6488022920834,-0.547269159786035,-1.60961517584128,-0.0225950894908483,67.6568069088146 +00:00:55.6299,69.6488043363344,-0.500373317041488,-1.47168622659261,-0.0224854323275242,67.6501070934263 +00:00:55.6403,69.648806674201,-0.45882655806235,-1.34948987665397,-0.022387767092548,67.6417930267936 +00:00:55.6473,69.6488081254353,-0.442600844731704,-1.30176719038736,-0.0223491429335154,67.6363077024478 +00:00:55.6542,69.648809538958,-0.435502782921693,-1.28089053800498,-0.0223315873440584,67.63082930549 +00:00:55.6612,69.6488109426558,-0.436600930691471,-1.28412038438668,-0.022332953055029,67.6253529253852 +00:00:55.6681,69.6488123603645,-0.444457106253444,-1.30722678309836,-0.0223499230968001,67.619874364267 +00:00:55.6751,69.6488138109278,-0.457350360453229,-1.34514811898009,-0.0223785271541869,67.6143903026127 +00:00:55.6820,69.6488153075868,-0.473459612532972,-1.3925282721558,-0.0224145626164597,67.6088984071091 +00:00:55.6889,69.6488168578754,-0.491019460299749,-1.44417488323456,-0.0224539540180877,67.6033973493129 +00:00:55.6959,69.6488184639802,-0.508446474395904,-1.49543080704678,-0.0224930446509295,67.5978867425837 +00:00:55.7049,69.6488206197541,-0.528579574937648,-1.55464580864014,-0.0225380517066488,67.5907422273983 +00:00:55.7184,69.6488239814177,-0.550276490652705,-1.6184602666256,-0.0225859303823837,67.5799993990565 +00:00:55.7291,69.6488267424061,-0.559283783450958,-1.64495230426752,-0.0226049487285055,67.5714106520567 +00:00:55.7399,69.6488295304508,-0.560939048702817,-1.64982073147887,-0.0226069779961367,67.5628178186041 +00:00:55.7507,69.6488323129573,-0.556721490522037,-1.63741614859423,-0.0225954321989526,67.5542266449225 +00:00:55.7614,69.648835066283,-0.548792975143858,-1.61409698571723,-0.0225753057049725,67.5456413002808 +00:00:55.7722,69.648837777635,-0.539449394800334,-1.58661586705981,-0.0225519047889272,67.5370640415307 +00:00:55.7829,69.6488404447331,-0.530691701395566,-1.56085794528108,-0.0225298557126868,67.5284952718396 +00:00:55.7937,69.648843073751,-0.523952359819246,-1.54103635240955,-0.0225124716862821,67.5199339030879 +00:00:55.8124,69.6488475915071,-0.518745662003649,-1.52572253530485,-0.0224973055152344,67.5050770710562 +00:00:55.8260,69.6488508523722,-0.519750448463921,-1.52867778959977,-0.0224973659219577,67.4943069710108 +00:00:55.8395,69.6488541274563,-0.523615068210804,-1.54004431826707,-0.0225040450154133,67.4835354447457 +00:00:55.8531,69.6488574297689,-0.528739872333259,-1.55511727156841,-0.0225136432920539,67.4727601949744 +00:00:55.8666,69.6488607626812,-0.533628592638853,-1.56949586070251,-0.0225226985378468,67.4619806251728 +00:00:55.8837,69.6488649878672,-0.537885238829105,-1.5820154083209,-0.0225297130359243,67.4484236639473 +00:00:55.9063,69.6488706313478,-0.539811629292869,-1.58768126262608,-0.0225304035504316,67.4304109613398 +00:00:55.9289,69.6488762807138,-0.538753212303772,-1.58456827148168,-0.0225241836673613,67.4124002335097 +00:00:55.9516,69.6488819173773,-0.536888284609626,-1.57908319002831,-0.0225160960348463,67.3943947631118 +00:00:55.9742,69.6488875416975,-0.536029066488425,-1.57655607790713,-0.0225103394800821,67.3763944854752 +00:00:56.0000,69.6488939362368,-0.536999045867668,-1.57940895843432,-0.0225083103715059,67.3559375238425 +00:00:56.0004,69.648894055207,-0.537080517397732,-1.57964858058157,-0.0225084197422625,67.3555571019122 +00:00:56.0009,69.6488941742241,-0.537276864268667,-1.58022607137843,-0.0225087954501084,67.3551766730269 +00:00:56.0017,69.648894359778,-0.537977008342611,-1.58228531865474,-0.0225102948913787,67.3545840834829 +00:00:56.0024,69.6488945456816,-0.539258573554777,-1.58605462810228,-0.0225131424138482,67.3539914353585 +00:00:56.0031,69.6488947321418,-0.541195193735222,-1.59175056980948,-0.0225175087839655,67.3533986920323 +00:00:56.0039,69.6488949193868,-0.543809600056414,-1.59944000016592,-0.0225234467564305,67.3528058131692 +00:00:56.0049,69.6488951666518,-0.548253480980786,-1.61251023817878,-0.0225335881640276,67.3520277299606 +00:00:56.0063,69.6488955431089,-0.557004848089042,-1.63824955320307,-0.0225536359391342,67.3508567050783 +00:00:56.0086,69.6488961342673,-0.574867110939949,-1.69078562041162,-0.0225946815213951,67.3490593947587 +00:00:56.0119,69.6488970371592,-0.60941575961118,-1.79239929297406,-0.0226742560499417,67.3464305119312 +00:00:56.0163,69.6488983405812,-0.668520339642764,-1.96623629306695,-0.0228106137153553,67.3428987084611 +00:00:56.0207,69.6488997752282,-0.739059158408365,-2.17370340708343,-0.0229735236520765,67.339343797989 +00:00:56.0251,69.6489013603238,-0.817251296301415,-2.40368028323946,-0.0231542270073702,67.3357623735825 +00:00:56.0295,69.6489031080515,-0.899564898685142,-2.64577911377983,-0.0233445372607047,67.3321522727696 +00:00:56.0350,69.6489055644637,-1.00448086592974,-2.95435548802865,-0.0235871752189297,67.3275334601192 +00:00:56.0406,69.6489082851315,-1.10533180570895,-3.25097589914396,-0.0238204477575506,67.3228680254084 +00:00:56.0462,69.6489112538049,-1.1975230706099,-3.52212667826441,-0.0240336761099962,67.3181588337589 +00:00:56.0518,69.6489144438846,-1.27750664394065,-3.75737248217839,-0.0242186034686332,67.3134105860912 +00:00:56.0589,69.6489187918642,-1.35823557798848,-3.99481052349553,-0.0244050693060005,67.3072828422558 +00:00:56.0675,69.6489243365776,-1.42110437403566,-4.17971874716369,-0.0245498462722237,67.299816294302 +00:00:56.0741,69.6489286926417,-1.44360536508196,-4.24589813259399,-0.0246011363597792,67.2941087765295 +00:00:56.0807,69.6489330875585,-1.44599791443672,-4.25293504246095,-0.0246056851985041,67.2883946050084 +00:00:56.0873,69.6489374644478,-1.43130517968462,-4.20972111671947,-0.0245705109353951,67.282683866344 +00:00:56.0938,69.648941777251,-1.40328870773151,-4.12731972862208,-0.0245043543071846,67.2769847297659 +00:00:56.1004,69.6489459917703,-1.36604588301396,-4.01778200886459,-0.0244167405965907,67.271303261713 +00:00:56.1070,69.6489500861289,-1.32366714294017,-3.89313865570637,-0.0243171806482438,67.2656433434351 +00:00:56.1136,69.648954050367,-1.2799520899246,-3.76456497036647,-0.0242145094373079,67.2600067425312 +00:00:56.1202,69.6489578852613,-1.23819063507843,-3.64173716199538,-0.0241163766015244,67.2543933221604 +00:00:56.1288,69.6489627477145,-1.19087057786621,-3.5025605231359,-0.0240049891315778,67.247049575207 +00:00:56.1374,69.648967445234,-1.15510272884025,-3.39736096717721,-0.0239204554589502,67.2397354987363 +00:00:56.1485,69.64897328041,-1.12885300778531,-3.32015590525091,-0.023857670309787,67.2304384466296 +00:00:56.1571,69.6489777693895,-1.12309066710419,-3.3032078444241,-0.0238429060364428,67.2231914257803 +00:00:56.1657,69.6489822565095,-1.1284617940735,-3.31900527668676,-0.0238540355855082,67.2159451485777 +00:00:56.1743,69.6489867806762,-1.14219118231178,-3.35938583032877,-0.0238846108309021,67.2086927115102 +00:00:56.1829,69.6489913686795,-1.16107514179284,-3.414926887626,-0.0239271848879841,67.2014293591873 +00:00:56.1915,69.6489960347868,-1.1819523061704,-3.47633031226589,-0.0239744060157827,67.1941525571359 +00:00:56.2001,69.6490007816162,-1.2020609856437,-3.53547348718734,-0.0240198488194047,67.1868618378346 +00:00:56.2121,69.6490075079785,-1.2246992721927,-3.60205668291971,-0.0240706604775503,67.176689322449 +00:00:56.2267,69.6490158553391,-1.2408948438157,-3.64969071710501,-0.024106071560503,67.1642365635961 +00:00:56.2413,69.649024269047,-1.24430666434244,-3.65972548336011,-0.0241117258060301,67.1517732074678 +00:00:56.2560,69.6490326748699,-1.23780667356531,-3.64060786342739,-0.0240942982394603,67.1393124372242 +00:00:56.2706,69.6490410229648,-1.22621214401441,-3.60650630592474,-0.0240649998278651,67.1268631084031 +00:00:56.2853,69.6490492950583,-1.21442697605818,-3.57184404722993,-0.0240352512248721,67.1144284701124 +00:00:56.2999,69.6490575007419,-1.20602147426485,-3.54712198313191,-0.0240133718286671,67.1020068202211 +00:00:56.3186,69.6490679352622,-1.20240383323658,-3.53648186246054,-0.0240020099699673,67.0861472430244 +00:00:56.3373,69.6490783663091,-1.20551259281177,-3.54562527297579,-0.0240063277956163,67.0702902174202 +00:00:56.3560,69.6490888360664,-1.21212475519304,-3.56507280939128,-0.0240188192898342,67.054428240242 +00:00:56.3747,69.6490993594934,-1.21866248184159,-3.58430141718115,-0.0240311444438597,67.038558647267 +00:00:56.3934,69.6491099270862,-1.22274324659722,-3.59630366646241,-0.0240377446104062,67.0226831256951 +00:00:56.4208,69.6491253996733,-1.22374854410327,-3.59926042383314,-0.024035826807232,66.9994808947616 +00:00:56.4481,69.6491408684248,-1.22158990607286,-3.59291148844959,-0.0240265281817895,66.9762834621052 +00:00:56.4754,69.6491563166649,-1.21972021310157,-3.58741239147521,-0.0240179042228938,66.9530937943174 +00:00:56.5000,69.6491701726996,-1.21990093256793,-3.58794391931745,-0.0240145076258483,66.9322873748627 +00:00:56.5008,69.6491706342982,-1.22011747714926,-3.58858081514489,-0.0240148863829647,66.9315942457897 +00:00:56.5016,69.6491710960841,-1.22076680318737,-3.59049059760991,-0.0240162762727889,66.9309010870046 +00:00:56.5027,69.6491717162614,-1.22266890803643,-3.59608502363655,-0.0240205497598576,66.9299710896399 +00:00:56.5038,69.6491723377539,-1.22590189856382,-3.60559381930536,-0.0240279328987079,66.9290408644599 +00:00:56.5049,69.649172961235,-1.2305114872684,-3.61915143314236,-0.0240385326705715,66.9281102914472 +00:00:56.5062,69.6491737468085,-1.23816176301361,-3.64165224415768,-0.0240561943505759,66.926942975232 +00:00:56.5085,69.6491750443138,-1.25477555988403,-3.69051635260009,-0.0240946663029953,66.9250318484986 +00:00:56.5131,69.6491777607807,-1.30193599252038,-3.82922350741287,-0.0242041665681923,66.9211213353882 +00:00:56.5194,69.6491817168315,-1.38967936888319,-4.08729226142114,-0.0244082822375665,66.9156796400676 +00:00:56.5258,69.6491859531645,-1.49477314996604,-4.39639161754717,-0.0246530289423836,66.9101881786396 +00:00:56.5321,69.6491905055138,-1.60736143669531,-4.72753363733915,-0.0249153875666818,66.9046405610467 +00:00:56.5384,69.649195383975,-1.71876717540862,-5.05519757473124,-0.0251750720509416,66.8990349671911 +00:00:56.5448,69.6492005753514,-1.82183973651993,-5.35835216623508,-0.0254153452190741,66.893373732907 +00:00:56.5511,69.6492060477555,-1.91112099436336,-5.6209441010687,-0.025623413927347,66.8876625330766 +00:00:56.5574,69.6492117557641,-1.98290798212098,-5.83208230035584,-0.0257905837418436,66.8819094641476 +00:00:56.5654,69.6492191855902,-2.04551635682797,-6.01622457890579,-0.0259360730204959,66.8746236183842 +00:00:56.5734,69.6492267897204,-2.0773004870602,-6.10970731488295,-0.026009398748073,66.8673069510969 +00:00:56.5814,69.6492344607015,-2.08088251213764,-6.12024268275777,-0.0260166697284054,66.8599786558005 +00:00:56.5894,69.6492421039773,-2.06116493350357,-6.06224980442227,-0.0259693517360767,66.8526556285373 +00:00:56.5973,69.649249645393,-2.02447240343643,-5.95433059834245,-0.0258822541918376,66.8453511233651 +00:00:56.6053,69.6492570348938,-1.97765807974474,-5.81664141101394,-0.0257714317193474,66.838074088798 +00:00:56.6133,69.6492642470478,-1.92731548696792,-5.66857496167037,-0.0256523334009625,66.8308290728554 +00:00:56.6213,69.649271279002,-1.8791644847327,-5.52695436686088,-0.0255383617911229,66.823616587941 +00:00:56.6293,69.6492781465603,-1.83764038333461,-5.40482465686651,-0.0254399097392788,66.8164338116181 +00:00:56.6372,69.6492848791254,-1.80568863418758,-5.31084892408111,-0.0253638799210196,66.8092754905802 +00:00:56.6481,69.6492938919547,-1.77986017468253,-5.23488286671332,-0.0253017729060948,66.7995688322282 +00:00:56.6589,69.6493028234321,-1.77339421560877,-5.2158653400258,-0.0252850366931928,66.7898773221614 +00:00:56.6698,69.6493117601009,-1.78285345121247,-5.24368662121314,-0.0253056289389966,66.7801854885549 +00:00:56.6806,69.6493207679693,-1.80292090535683,-5.30270854516716,-0.0253510994118735,66.7704815265205 +00:00:56.6915,69.6493298855544,-1.82769005913529,-5.37555899745674,-0.0254076091136345,66.7607585433229 +00:00:56.7023,69.6493391235919,-1.85182135318799,-5.44653339172938,-0.0254626396594575,66.7510146130813 +00:00:56.7132,69.6493484696961,-1.87133909965329,-5.50393852839203,-0.0255068634008358,66.7412519461779 +00:00:56.7265,69.649360066001,-1.88585705784385,-5.54663840542307,-0.025539011500316,66.7292282283817 +00:00:56.7442,69.6493755247629,-1.88949207476179,-5.55732963165233,-0.0255450050120882,66.7132604052905 +00:00:56.7619,69.6493909652576,-1.88036451668042,-5.53048387258947,-0.0255210424338315,66.6972974417699 +00:00:56.7796,69.6494063179006,-1.86628353260187,-5.48906921353491,-0.0254854426133383,66.6813517992441 +00:00:56.7973,69.649421569956,-1.85439064739193,-5.45409013938802,-0.025454971374106,66.6654257626389 +00:00:56.8150,69.6494367527375,-1.8487449560202,-5.4374851647653,-0.025439166741699,66.6495137260515 +00:00:56.8366,69.6494552676801,-1.85040221464966,-5.44235945485193,-0.0254399573172326,66.6300958307782 +00:00:56.8583,69.6494738215998,-1.85746738670893,-5.46313937267331,-0.0254534633216515,66.610673313482 +00:00:56.8799,69.6494924419624,-1.86483061811262,-5.48479593562534,-0.0254676806491964,66.5912412447459 +00:00:56.9015,69.6495111169616,-1.86904721159066,-5.497197681149,-0.0254745081744413,66.5718017359139 +00:00:56.9293,69.6495352152235,-1.86930160485797,-5.4979458966411,-0.0254711302551108,66.5467433261809 +00:00:56.9572,69.649559303077,-1.86675449312169,-5.49045439153439,-0.0254611628152358,66.5216906968147 +00:00:56.9850,69.6495833680738,-1.86494822859232,-5.48514184880094,-0.0254529399812642,66.4966460791911 +00:00:57.0000,69.649596237025,-1.86495902741705,-5.48517361005015,-0.0254508425845984,66.4832496345472 +00:00:57.0010,69.6495971527664,-1.86532109769889,-5.4862385226438,-0.0254515443275874,66.4822964140695 +00:00:57.0021,69.6495980689053,-1.86645505384033,-5.48957368776567,-0.0254540640809893,66.4813431278301 +00:00:57.0036,69.6495993689804,-1.86996930525761,-5.49990972134592,-0.0254621272648075,66.4799918176421 +00:00:57.0051,69.6496006723518,-1.8758700041221,-5.51726471800617,-0.0254758117905585,66.478639926549 +00:00:57.0066,69.6496019806341,-1.88412220011843,-5.54153588270127,-0.0254950358311663,66.4772871644295 +00:00:57.0086,69.6496037732362,-1.89881704192163,-5.58475600565186,-0.0255293599981275,66.4754430381812 +00:00:57.0130,69.6496077016923,-1.9418454075966,-5.71131002234296,-0.0256301020391072,66.4714534812073 +00:00:57.0194,69.6496135845173,-2.02530196708665,-5.95677049143131,-0.0258258517604851,66.4656384217474 +00:00:57.0258,69.6496197368424,-2.12541126186798,-6.25120959372936,-0.0260609157681754,66.4597751148849 +00:00:57.0322,69.6496261929894,-2.23263885171886,-6.56658485799664,-0.0263128456652739,66.4538573729398 +00:00:57.0386,69.6496329624086,-2.3385871223933,-6.87819741880383,-0.0265618498104142,66.4478834772764 +00:00:57.0450,69.6496400318509,-2.43635365604928,-7.16574604720377,-0.0267916411886402,66.4418557922838 +00:00:57.0514,69.6496473698894,-2.52069759251307,-7.41381644856784,-0.0269898362857086,66.4357799559626 +00:00:57.0578,69.6496549320203,-2.58809794556995,-7.61205278108808,-0.0271481005506424,66.4296639648466 +00:00:57.0666,69.6496655031148,-2.64971714816837,-7.79328572990698,-0.0272924710851141,66.4212747231027 +00:00:57.0753,69.6496762537615,-2.67700757353969,-7.87355168688144,-0.0273558219297033,66.4128534833055 +00:00:57.0840,69.6496870551758,-2.67371193976303,-7.86385864636186,-0.027346951352103,66.4044234359778 +00:00:57.0927,69.6496977976427,-2.64633800638333,-7.78334707759803,-0.0272812067115467,66.3960043454427 +00:00:57.1015,69.6497084003114,-2.60293322303225,-7.65568595009485,-0.0271775860345316,66.3876107807205 +00:00:57.1102,69.6497188150771,-2.55183667710386,-7.50540199148193,-0.0270557839119068,66.3792514129019 +00:00:57.1189,69.6497290257106,-2.50063207543734,-7.35480022187454,-0.0269337136468907,66.3709291702283 +00:00:57.1277,69.6497390433917,-2.45540081484565,-7.2217671024872,-0.0268257410139084,66.3626420420795 +00:00:57.1364,69.6497488999068,-2.42030373852474,-7.11854040742571,-0.0267416964835635,66.3543843043524 +00:00:57.1474,69.6497611959102,-2.39352858702655,-7.03978996184278,-0.0266770009334156,66.3439819655277 +00:00:57.1608,69.649776030064,-2.3860676229,-7.01784594970589,-0.0266576203254622,66.3313654504277 +00:00:57.1742,69.6497908808773,-2.40020284134507,-7.05942012160315,-0.0266892774484054,66.3187467575518 +00:00:57.1876,69.6498058509067,-2.4266420273549,-7.13718243339677,-0.0267500348624482,66.3061073932899 +00:00:57.2010,69.6498209866992,-2.45562316621541,-7.22242107710414,-0.0268168277470525,66.2934389552685 +00:00:57.2144,69.6498362818508,-2.47938392242453,-7.29230565418979,-0.0268713001924082,66.2807425882067 +00:00:57.2278,69.6498516927774,-2.49354158147444,-7.33394582786599,-0.0269030754611858,66.2680261461682 +00:00:57.2446,69.6498710758977,-2.49707548103755,-7.34433965011043,-0.0269092910924404,66.2520753198706 +00:00:57.2614,69.6498904449427,-2.48897530316283,-7.32051559753774,-0.0268879747971245,66.2361283090786 +00:00:57.2781,69.6499097375002,-2.47587977299453,-7.28199933233686,-0.0268548264825706,66.2201963828346 +00:00:57.2949,69.6499289382657,-2.46409561123698,-7.24734003304995,-0.0268247732401771,66.2042823086421 +00:00:57.3117,69.6499480701828,-2.45753382108364,-7.22804065024601,-0.0268070799960057,66.1883819463255 +00:00:57.3335,69.6499728357223,-2.45760931667337,-7.22826269609815,-0.0268044693918026,66.1677821639503 +00:00:57.3552,69.6499976291465,-2.46385253481872,-7.24662510240799,-0.0268164790208484,66.1471794811565 +00:00:57.3770,69.650022485185,-2.47119691573406,-7.26822622274722,-0.0268311101863452,66.1265676144966 +00:00:57.3988,69.6500473977997,-2.47583911273502,-7.28187974333828,-0.02683934545101,66.1059476490705 +00:00:57.4273,69.6500801051447,-2.47656785353006,-7.28402309861783,-0.0268374438866914,66.0789002035537 +00:00:57.4654,69.6501237038494,-2.47364030485274,-7.2754126613316,-0.0268256617807592,66.0428410819297 +00:00:57.5000,69.65016331405,-2.47191828756456,-7.27034790460165,-0.0268171833790818,66.0100690436287 +00:00:57.5013,69.6501648281462,-2.47243344858986,-7.27186308408783,-0.0268182392430514,66.0088161874913 +00:00:57.5026,69.6501663429357,-2.47418199869546,-7.27700587851605,-0.0268222246836821,66.0075632135408 +00:00:57.5043,69.6501683041827,-2.47892272748774,-7.29094919849334,-0.0268332683933872,66.0059426789983 +00:00:57.5060,69.650170270338,-2.48655784766599,-7.31340543431173,-0.0268511879026976,66.004321268172 +00:00:57.5077,69.6501722436063,-2.49695183110991,-7.34397597385267,-0.0268756620454934,66.0026985815129 +00:00:57.5105,69.6501754634124,-2.51894046745763,-7.4086484336989,-0.0269275487869904,66.0000644353321 +00:00:57.5169,69.6501830013086,-2.58801856530789,-7.6118193097291,-0.027090880274631,65.9939862969274 +00:00:57.5232,69.6501907706325,-2.67646633287721,-7.87195980258003,-0.0273002986782787,65.9878663842907 +00:00:57.5296,69.650198812666,-2.77512176456961,-8.16212283696945,-0.0275340575786352,65.9816971985574 +00:00:57.5360,69.650207145877,-2.87568374681627,-8.45789337298902,-0.0277724359588509,65.9754753730897 +00:00:57.5424,69.6502157663342,-2.9711390943584,-8.73864439517177,-0.0279987542721777,65.9692016025402 +00:00:57.5487,69.650224651404,-3.05595941426429,-8.98811592430673,-0.0281998474891326,65.9628799762372 +00:00:57.5566,69.6502359865949,-3.14044371755607,-9.23659916928255,-0.0284000424360806,65.9549776344931 +00:00:57.5663,69.6502501219599,-3.20788252239295,-9.43494859527338,-0.0285595462625692,65.9452947326736 +00:00:57.5759,69.6502644712145,-3.23635645644385,-9.51869546012897,-0.0286263182967572,65.9355733407331 +00:00:57.5855,69.6502788735381,-3.2303474919303,-9.50102203508911,-0.0286109793613256,65.9258426613013 +00:00:57.5952,69.6502931948108,-3.19812471149777,-9.40624915146403,-0.0285331951776392,65.9161270595513 +00:00:57.6048,69.650307341166,-3.14986889163806,-9.26432026952372,-0.028417203731291,65.9064435942702 +00:00:57.6144,69.6503212636243,-3.09583436522562,-9.10539519184005,-0.0282874282731073,65.8968011710598 +00:00:57.6240,69.6503349553318,-3.04488360780312,-8.95554002295034,-0.0281649807676088,65.8872010415214 +00:00:57.6337,69.6503484434493,-3.00353648580603,-8.83393084060596,-0.0280653952022576,65.8776382757542 +00:00:57.6433,69.6503617780004,-2.97555662896743,-8.75163714402187,-0.0279976425599369,65.8681037879135 +00:00:57.6568,69.6503803000476,-2.95997257840894,-8.70580170120276,-0.0279589784508856,65.8547921408935 +00:00:57.6702,69.6503987946492,-2.96752355100623,-8.72801044413599,-0.0279754462129345,65.8414862079547 +00:00:57.6837,69.6504173768096,-2.99001031180715,-8.79414797590339,-0.028027530818093,65.8281650773793 +00:00:57.6972,69.6504361096398,-3.01784576086439,-8.8760169437188,-0.0280923937472959,65.8148172640691 +00:00:57.7107,69.6504550020648,-3.04270646427139,-8.94913665962175,-0.0281501895451352,65.8014411336747 +00:00:57.7241,69.6504740211485,-3.05925825219904,-8.99781838882071,-0.0281881859505068,65.7880426684693 +00:00:57.7410,69.6504980107781,-3.06604289502366,-9.01777322065782,-0.0282025087657475,65.7711892202468 +00:00:57.7580,69.6505220073504,-3.06031279597211,-9.00091998815326,-0.0281869656252348,65.7543356267542 +00:00:57.7749,69.6505459394629,-3.04815808263143,-8.9651708312689,-0.0281560778562973,65.7374948893504 +00:00:57.7918,69.6505697815817,-3.03602105918698,-8.92947370349111,-0.0281252219019489,65.7206716622205 +00:00:57.8088,69.6505935490959,-3.02835354888177,-8.90692220259345,-0.028105032721735,65.7038631462628 +00:00:57.8313,69.6506251294147,-3.02695574214224,-8.90281100630071,-0.0280991998342859,65.6815084700232 +00:00:57.8605,69.6506661198553,-3.03395170087808,-8.92338735552377,-0.0281126972537201,65.6525153711621 +00:00:57.8897,69.6507072007987,-3.04226293189,-8.94783215261765,-0.0281293602334628,65.623509083602 +00:00:57.9189,69.6507483529662,-3.0457862846211,-8.95819495476795,-0.0281345881044435,65.5944931100014 +00:00:57.9540,69.6507977538256,-3.04407872185566,-8.95317271134017,-0.0281266669417442,65.5596725019128 +00:00:57.9890,69.650847125875,-3.041038825446,-8.94423183954707,-0.0281155589602077,65.5248619009075 +00:00:58.0000,69.6508625336055,-3.04039384706102,-8.94233484429711,-0.0281128198704182,65.5139953326745 +00:00:58.0015,69.6508646904338,-3.04107006452309,-8.94432371918555,-0.0281142730823024,65.5124741996397 +00:00:58.0030,69.6508668483581,-3.04335956643812,-8.95105754834741,-0.0281195920536813,65.5109528752981 +00:00:58.0052,69.6508699624572,-3.05039447481868,-8.97174845534907,-0.0281362089865948,65.5087600805501 +00:00:58.0074,69.6508730859997,-3.06180478490536,-9.00530819089812,-0.0281633123841276,65.5065655782949 +00:00:58.0096,69.6508762231905,-3.07723565233694,-9.05069309510865,-0.0282000535633971,65.5043685996846 +00:00:58.0134,69.6508815550186,-3.11079936544071,-9.14940989835504,-0.0282800965330904,65.5006570221317 +00:00:58.0205,69.6508919252374,-3.19386974083036,-9.39373453185401,-0.0284784824000215,65.4935389827547 +00:00:58.0276,69.6509025933128,-3.2933573671311,-9.6863451974444,-0.0287163138892743,65.4863666517257 +00:00:58.0347,69.6509135931526,-3.39823683843844,-9.99481423070129,-0.0289671771109813,65.4791338046955 +00:00:58.0418,69.6509249277982,-3.49897968060964,-10.2911167076754,-0.0292082183129561,65.4718398610718 +00:00:58.0489,69.6509365724585,-3.58810178498913,-10.5532405440857,-0.0294214628539226,65.4644893353595 +00:00:58.0560,69.6509484811898,-3.66036972443971,-10.7657933071756,-0.0295943206110363,65.4570906195829 +00:00:58.0655,69.6509647561172,-3.72597157850569,-10.9587399367814,-0.0297510169241109,65.4471096503205 +00:00:58.0773,69.6509851762682,-3.75820322156425,-11.0535388869537,-0.0298274106698118,65.4346977506875 +00:00:58.0869,69.6510018419651,-3.74894009398828,-11.0262943940832,-0.0298043181325959,65.424594416087 +00:00:58.0965,69.6510184190811,-3.71627299963132,-10.930214704798,-0.0297249784905327,65.414507603388 +00:00:58.1061,69.6510348241543,-3.66977977818879,-10.7934699358494,-0.0296123954782641,65.4044526154706 +00:00:58.1157,69.6510510165371,-3.61894149914786,-10.643945585729,-0.0294893498862489,65.394436910049 +00:00:58.1253,69.6510669941421,-3.57181329823087,-10.5053332300908,-0.0293752005110905,65.3844608765761 +00:00:58.1349,69.6510827853504,-3.53419792870373,-10.3946997903051,-0.0292838963431508,65.3745193182533 +00:00:58.1472,69.6511028449992,-3.5047454356256,-10.3080748106635,-0.0292119409602408,65.3618080161203 +00:00:58.1639,69.6511299187683,-3.49691716317401,-10.2850504799236,-0.0291915426714899,65.3445929419887 +00:00:58.1776,69.6511522413448,-3.51234971381746,-10.3304403347572,-0.0292273603075242,65.3304054665581 +00:00:58.1914,69.6511746870808,-3.53783349591101,-10.4053926350324,-0.0292873764541258,65.3161960191826 +00:00:58.2051,69.6511972920953,-3.5640999587128,-10.4826469373906,-0.0293493053498811,65.3019579611955 +00:00:58.2189,69.6512200411863,-3.58419308621513,-10.541744371221,-0.0293964046630752,65.2876940708479 +00:00:58.2355,69.651247744992,-3.59566839903955,-10.5754952912928,-0.0294225122755837,65.2703764381749 +00:00:58.2588,69.6512863341454,-3.59200963074982,-10.5647342080877,-0.0294115935565083,65.2462709619514 +00:00:58.2820,69.6513248338277,-3.57669041341484,-10.5196776865142,-0.0293725773919341,65.2221836597561 +00:00:58.3052,69.6513631913459,-3.56268239441467,-10.4784776306314,-0.0293367020564958,65.1981242215796 +00:00:58.3284,69.6514014527716,-3.55741474118255,-10.4629845328899,-0.0293218836140671,65.1740841849845 +00:00:58.3516,69.6514397024506,-3.56084039139153,-10.473059974681,-0.0293280301134909,65.1500480402347 +00:00:58.3802,69.6514868845225,-3.56932940760038,-10.4980276694129,-0.0293459184760865,65.1204332870519 +00:00:58.4087,69.65153415143,-3.57534014671662,-10.5157063138724,-0.0293578477688025,65.0908055269263 +00:00:58.4373,69.6515814582253,-3.57591146382416,-10.5173866583064,-0.0293566572862094,65.0611730226555 +00:00:58.4834,69.6516575893387,-3.57226074116225,-10.5066492387125,-0.0293437093991827,65.0134764921906 +00:00:58.5000,69.6516850373506,-3.57061948187536,-10.5018220055158,-0.029338255882532,64.9962756962209 +00:00:58.5018,69.6516880488647,-3.57152172398183,-10.5044756587701,-0.0293402746688656,64.9943883843523 +00:00:58.5036,69.6516910621155,-3.57464940676947,-10.5136747257926,-0.0293476750926734,64.9925007625791 +00:00:58.5060,69.6516950069274,-3.58295929363882,-10.5381155695259,-0.0293675582150086,64.9900324726033 +00:00:58.5084,69.6516989634446,-3.59591282281151,-10.5762141847397,-0.0293986735544789,64.9875620410335 +00:00:58.5107,69.6517029364484,-3.61303267813076,-10.6265667003846,-0.0294398687993028,64.9850885855975 +00:00:58.5156,69.6517111955988,-3.65857630532185,-10.7605185450643,-0.0295496046005388,64.9799787667347 +00:00:58.5237,69.6517250187265,-3.75381165917869,-11.0406225269961,-0.029779340366261,64.9715425039722 +00:00:58.5317,69.6517392181198,-3.86269809335563,-11.3608767451636,-0.0300422234084965,64.9630369722997 +00:00:58.5398,69.6517538174146,-3.97145293480919,-11.6807439259094,-0.0303049132353678,64.9544577761597 +00:00:58.5478,69.6517687970375,-4.06893108747278,-11.9674443749199,-0.0305404120928586,64.9458084982736 +00:00:58.5559,69.6517841021098,-4.14730373004262,-12.1979521471842,-0.0307297229668554,64.9370992492864 +00:00:58.5657,69.6518031377135,-4.21102703046708,-12.3853736190208,-0.0308834862406894,64.9263895244149 +00:00:58.5785,69.6518280097994,-4.24149926763363,-12.4749978459813,-0.0309565120965431,64.91249664509 +00:00:58.5888,69.6518481575308,-4.22875336082043,-12.437509884766,-0.0309249269420955,64.9012633841038 +00:00:58.5990,69.6518681943473,-4.19250762633571,-12.3309047833403,-0.0308363411132058,64.8900508896804 +00:00:58.6093,69.6518880336124,-4.14376720884001,-12.1875506142353,-0.0307174299076197,64.878875194518 +00:00:58.6196,69.6519076403468,-4.09305509930648,-12.0383973509014,-0.0305937108781708,64.8677427784751 +00:00:58.6299,69.6519270242564,-4.0488311360362,-11.9083268706947,-0.0304857042268132,64.8566518547677 +00:00:58.6402,69.651946227988,-4.01661454011372,-11.813572176805,-0.0304068028698318,64.8455945404988 +00:00:58.6542,69.6519721818097,-3.99557238814852,-11.7516834945545,-0.0303547204362226,64.8305865057797 +00:00:58.6681,69.6519980735455,-3.99794485390116,-11.7586613350034,-0.0303594454101735,64.8155904691612 +00:00:58.6821,69.6520240272578,-4.01650262580931,-11.8132430170862,-0.030403466452403,64.800583463236 +00:00:58.6961,69.6520501166621,-4.04185676548925,-11.8878140161448,-0.03046401475312,64.7855518299085 +00:00:58.7101,69.652076359257,-4.06542106434143,-11.9571207774748,-0.0305202476708706,64.7704923156962 +00:00:58.7241,69.652102727172,-4.08145649743708,-12.0042838159914,-0.0305582174769105,64.7554100717746 +00:00:58.7430,69.652138409016,-4.08823518614546,-12.0242211357219,-0.0305733693897861,64.7350372633043 +00:00:58.7669,69.6521837225549,-4.07947523951015,-11.9984565867946,-0.0305503994065092,64.7091612811403 +00:00:58.7909,69.6522289155286,-4.06377449496065,-11.9522779263549,-0.0305105365849316,64.6833090866048 +00:00:58.8149,69.6522739747707,-4.0528632631201,-11.9201860680003,-0.0304823056369777,64.657483130317 +00:00:58.8389,69.6523189691158,-4.05134871119917,-11.915731503527,-0.0304769343389813,64.6316706434406 +00:00:58.8736,69.6523841758042,-4.05876792359855,-11.9375527164663,-0.0304925736111021,64.5942838749375 +00:00:58.9083,69.6524494842856,-4.06650609693768,-11.9603120498167,-0.0305090222305929,64.5568811505915 +00:00:58.9430,69.6525148549804,-4.06796027404524,-11.9645890413095,-0.030510179403704,64.5194698026278 +00:00:58.9877,69.6525989511664,-4.06433085480736,-11.9539142788452,-0.030498267540921,64.4713383607842 +00:00:59.0000,69.6526219709963,-4.06285767199291,-11.9495813882144,-0.0304938367634329,64.4581605161987 +00:00:59.0020,69.6526258294701,-4.06392150386801,-11.9527103054941,-0.0304962938187954,64.455951667569 +00:00:59.0041,69.6526296902921,-4.06766527542705,-11.9637213983149,-0.0305052933827825,64.4537423917565 +00:00:59.0066,69.6526345485579,-4.07701355435263,-11.9912163363313,-0.0305279406034447,64.4509654677548 +00:00:59.0092,69.6526394208801,-4.09128896196486,-12.0332028293084,-0.0305626199957554,64.4481859417715 +00:00:59.0124,69.6526455800794,-4.11524685613507,-12.1036672239267,-0.0306209016939361,64.4446834142271 +00:00:59.0195,69.6526591504562,-4.18388350248798,-12.3055397131999,-0.0307880640971512,64.4370260320475 +00:00:59.0285,69.6526767567561,-4.29101964464337,-12.620646013657,-0.0310492386963209,64.4272296878296 +00:00:59.0374,69.6526948138404,-4.40446821171335,-12.9543182697452,-0.0313259804036688,64.4173494887958 +00:00:59.0464,69.652713316362,-4.50880826008712,-13.2612007649621,-0.0315805993977442,64.4073863900118 +00:00:59.0554,69.6527322061401,-4.59293397699867,-13.5086293441137,-0.0317859053175335,64.3973512036284 +00:00:59.0644,69.6527513885816,-4.65055675434307,-13.678108101009,-0.0319264623411259,64.3872615472611 +00:00:59.0766,69.6527778338705,-4.68471148795265,-13.7785631998607,-0.0320095013267408,64.3734363049906 +00:00:59.0889,69.6528043507124,-4.67451943968463,-13.7485865873077,-0.0319840172289634,64.3595979444734 +00:00:59.1011,69.6528307319162,-4.63359716322906,-13.6282269506737,-0.0318832849021761,64.3457851509605 +00:00:59.1134,69.6528568505357,-4.57846360107462,-13.4660694149254,-0.0317477232131901,64.3320216413435 +00:00:59.1256,69.6528826676643,-4.52446059068588,-13.3072370314291,-0.0316148913496755,64.3183146969459 +00:00:59.1379,69.6529082185279,-4.48279579833095,-13.1846935245028,-0.0315122390575313,64.304657752846 +00:00:59.1501,69.6529335860921,-4.45919304130374,-13.1152736508934,-0.0314537980353675,64.2910353222632 +00:00:59.1671,69.6529687680033,-4.45532635991376,-13.1039010585699,-0.0314434428091054,64.2721084377723 +00:00:59.1842,69.6530040049569,-4.47516285553723,-13.1622436927566,-0.0314911821514404,64.2531717868449 +00:00:59.2012,69.6530394208767,-4.50402388789052,-13.2471290820309,-0.0315610822594727,64.2342021890676 +00:00:59.2183,69.653075037536,-4.52869556090257,-13.319692826184,-0.0316207549027808,64.2151955519095 +00:00:59.2353,69.6531107975857,-4.54156746996861,-13.3575513822606,-0.0316515162326154,64.1961625845063 +00:00:59.2570,69.6531563610637,-4.54050986655734,-13.3544407839922,-0.0316478909684605,64.1719312956542 +00:00:59.2787,69.6532018648191,-4.52787260124066,-13.3172723565902,-0.0316158354727206,64.1477119840328 +00:00:59.3003,69.6532472481258,-4.5141472461327,-13.2769036650962,-0.0315810904219943,64.1235160269951 +00:00:59.3220,69.6532925319496,-4.5066373179641,-13.2548156410709,-0.0315615992938417,64.0993395044154 +00:00:59.3499,69.6533507866291,-4.50767073643374,-13.2578551071581,-0.0315628036947576,64.0682263941292 +00:00:59.3850,69.6534240891701,-4.51587842368147,-13.281995363769,-0.0315813282875439,64.0291017452011 +00:00:59.4201,69.6534974849201,-4.52152653907716,-13.298607467874,-0.0315935906387514,63.9899616454739 +00:00:59.4552,69.6535709143557,-4.52080499301362,-13.2964852735695,-0.0315901944664362,63.9508172434444 +00:00:59.5000,69.6536645310386,-4.51660637735344,-13.2841364039807,-0.031577798449254,63.9008990401476 +00:00:59.5024,69.6536697296707,-4.51815531111531,-13.2886920915156,-0.0315815034368201,63.8981269579191 +00:00:59.5049,69.6536749322237,-4.52344963533981,-13.3042636333524,-0.0315944424029781,63.8953541481303 +00:00:59.5074,69.6536801433731,-4.53313463826678,-13.3327489360788,-0.0316182078243459,63.8925797315021 +00:00:59.5099,69.6536853679734,-4.54695932421625,-13.3734097771066,-0.0316521828463991,63.8898027948652 +00:00:59.5138,69.6536935363766,-4.57523149726876,-13.4565632272611,-0.0317217282809914,63.8854743773029 +00:00:59.5223,69.6537117864325,-4.65700932957555,-13.6970862634575,-0.0319230718915942,63.8758802346244 +00:00:59.5308,69.6537303878192,-4.75469231628726,-13.9843891655508,-0.0321637603526214,63.8662200785838 +00:00:59.5394,69.6537493719305,-4.85393804248198,-14.2762883602411,-0.0324084308622791,63.8564879674617 +00:00:59.5479,69.6537687236322,-4.94308443182535,-14.5384836230157,-0.0326282890265685,63.8466867161901 +00:00:59.5564,69.6537883889685,-5.01398939274285,-14.7470276257143,-0.0328031964825985,63.8368264562734 +00:00:59.5674,69.6538139869115,-5.07162543922231,-14.9165454094774,-0.0329453468129324,63.8240913361994 +00:00:59.5817,69.6538476105795,-5.0922465467312,-14.97719572568,-0.0329960134105418,63.8074391122234 +00:00:59.5933,69.6538749229287,-5.07114137739064,-14.9151216982078,-0.0329436005684948,63.7939171312524 +00:00:59.6049,69.653902073408,-5.02903502896676,-14.791279496961,-0.0328392418584952,63.7804257803709 +00:00:59.6166,69.6539289832602,-4.97923389129992,-14.6448055626468,-0.0327158223805863,63.7669799239024 +00:00:59.6282,69.6539556408077,-4.93330952075228,-14.5097338845655,-0.0326019537657709,63.753581778231 +00:00:59.6398,69.6539820863249,-4.89923601861293,-14.4095177018027,-0.0325173627972238,63.7402237589794 +00:00:59.6547,69.6540158858413,-4.87810910816746,-14.3473797299043,-0.0324646769975533,63.723093211633 +00:00:59.6742,69.6540598985421,-4.88293990025175,-14.3615879419169,-0.0324760759912803,63.7007661610981 +00:00:59.6937,69.6541040369935,-4.90923934723382,-14.43893925657,-0.032540642136048,63.678415735023 +00:00:59.7131,69.6541484054273,-4.93813716107408,-14.5239328266885,-0.0326116985661994,63.6560222271253 +00:00:59.7326,69.6541929732062,-4.95606372734793,-14.5766580216116,-0.0326556278661847,63.6335913968199 +00:00:59.7520,69.6542376320568,-4.95872648854281,-14.5844896721847,-0.0326617572307974,63.6111436853791 +00:00:59.7789,69.6542992081458,-4.94659249233859,-14.5488014480547,-0.0326310246432771,63.5801742729862 +00:00:59.8058,69.6543606315507,-4.93087586483102,-14.5025760730324,-0.0325913834479077,63.5492343690553 +00:00:59.8326,69.6544219250801,-4.92321837621498,-14.4800540476911,-0.0325717204077078,63.5183196673133 +00:00:59.8595,69.6544831852373,-4.925402270522,-14.4864772662412,-0.032576490349229,63.4874119004954 +00:00:59.8961,69.6545667950714,-4.93344234341072,-14.5101245394433,-0.0325955990162376,63.4452536679883 +00:00:59.9328,69.6546504901921,-4.93776707035414,-14.522844324571,-0.0326055114550447,63.4030803691131 +00:00:59.9694,69.6547342011326,-4.93582039474053,-14.5171188080604,-0.0325998475055539,63.3609051500437 +00:01:00.0000,69.6548039792749,-4.93221181416405,-14.5065053357766,-0.0325901889267526,63.3257406530332 +00:01:00.0028,69.6548104409606,-4.93415586215327,-14.5122231239802,-0.0325949680069949,63.322484239457 +00:01:00.0056,69.6548169082533,-4.94060731266927,-14.531197978439,-0.032610973143494,63.3192267667783 +00:01:00.0084,69.6548233873456,-4.95218486913611,-14.5652496151062,-0.0326397475621902,63.3159670584087 +00:01:00.0113,69.6548298845615,-4.96845347596385,-14.6130984587172,-0.032680210472502,63.3127039125254 +00:01:00.0159,69.6548406148556,-5.00313633120483,-14.7151068564848,-0.0327665178910618,63.30733219378 +00:01:00.0251,69.6548621245877,-5.08990100171677,-14.9702970638729,-0.0329825596287784,63.2966462243551 +00:01:00.0343,69.6548840242446,-5.18838936872392,-15.2599687315409,-0.0332279464409001,63.2858861658687 +00:01:00.0435,69.6549063287979,-5.28332897319547,-15.5392028623396,-0.0334646216697254,63.2750491318349 +00:01:00.0527,69.6549290006387,-5.36306640545947,-15.7737247219396,-0.0336635005424416,63.2641422375503 +00:01:00.0619,69.6549519621956,-5.42040037657304,-15.9423540487442,-0.0338065709352901,63.2531802119663 +00:01:00.0746,69.6549837732281,-5.45874919814305,-16.0551447004207,-0.033902327840623,63.2380703906126 +00:01:00.0872,69.6550156892884,-5.45543175235012,-16.0453875069121,-0.0338940894895926,63.2229405585062 +00:01:00.0999,69.6550475067294,-5.42215266282546,-15.9475078318396,-0.0338110148481151,63.2078294989298 +00:01:00.1125,69.6550790956387,-5.37410664670344,-15.806196019716,-0.0336910205379858,63.1927619701695 +00:01:00.1251,69.6551104106993,-5.32585394715879,-15.6642763151729,-0.0335704665844419,63.1777466229549 +00:01:00.1378,69.6551414795686,-5.28823024271662,-15.5536183609312,-0.033476427544877,63.1627782041394 +00:01:00.1504,69.6551723777072,-5.26686683603807,-15.4907848118767,-0.0334229896227734,63.1478423460523 +00:01:00.1691,69.6552179374073,-5.26376049199495,-15.4816485058675,-0.0334151407128309,63.1257918079869 +00:01:00.1878,69.6552635597281,-5.28349184962744,-15.5396819106689,-0.0334644077118041,63.1037293704639 +00:01:00.2065,69.6553093670149,-5.31013679308801,-15.6180493914353,-0.0335310152325969,63.0816316782815 +00:01:00.2251,69.655355365247,-5.3303204096867,-15.6774129696668,-0.0335815059925795,63.0594975645456 +00:01:00.2438,69.6554014786174,-5.33767544959635,-15.6990454399893,-0.0335999166708858,63.0373414785791 +00:01:00.2704,69.6554671572366,-5.33040129540988,-15.6776508688526,-0.0335817017418106,63.005783173069 +00:01:00.2970,69.6555327148419,-5.31523418787434,-15.6330417290422,-0.0335436950319923,62.9742480006607 +00:01:00.3236,69.6555981325379,-5.30488147147541,-15.602592563163,-0.0335177338516079,62.9427395817106 +00:01:00.3502,69.6556634853199,-5.30392611177376,-15.5997826816875,-0.0335153343315186,62.9112435789836 +00:01:00.3924,69.6557671852013,-5.31093456032125,-15.6203957656507,-0.0335329476153504,62.8612837264596 +00:01:00.4346,69.6558709740651,-5.3159077969478,-15.6350229321994,-0.0335455006869549,62.8113067623826 +00:01:00.4768,69.6559747819948,-5.31398367295708,-15.6293637439914,-0.0335407518946199,62.7613260414256 +00:01:00.5000,69.6560316598732,-5.31101219326947,-15.6206240978514,-0.0335333333199326,62.7339355303336 +00:01:00.5031,69.6560393789352,-5.31324049231137,-15.6271779185628,-0.0335389487275034,62.7302183455341 +00:01:00.5062,69.6560471051244,-5.32055051387239,-15.6486779819776,-0.0335573536662602,62.726499791479 +00:01:00.5094,69.6560548460218,-5.33349826401662,-15.6867596000489,-0.0335899505071561,62.7227784126335 +00:01:00.5125,69.6560626092322,-5.3514747173076,-15.739631521493,-0.0336352099793812,62.7190527484441 +00:01:00.5180,69.6560761830713,-5.39160377736639,-15.8576581687247,-0.0337362600003674,62.7125600209901 +00:01:00.5279,69.6561011593047,-5.4809894317072,-16.12055715208,-0.0339614308079206,62.7006995992515 +00:01:00.5378,69.6561265567633,-5.57775297827792,-16.4051558184645,-0.0342053259238162,62.6887582070134 +00:01:00.5479,69.6561529470433,-5.66761337135346,-16.6694510922161,-0.0344319763734828,62.6764694297133 +00:01:00.5581,69.6561797051524,-5.73668229553105,-16.872594986856,-0.034606338965327,62.6641098543566 +00:01:00.5682,69.656206722775,-5.77895072260571,-16.9969138900168,-0.0347132011034959,62.6517002777093 +00:01:00.5833,69.656247149808,-5.79390239922802,-17.0408894094942,-0.0347513399355504,62.6331800468009 +00:01:00.5984,69.6562875363581,-5.76497662787888,-16.9558136114085,-0.0346787656684546,62.614667395023 +00:01:00.6135,69.6563276598207,-5.71369691911979,-16.8049909385876,-0.0345497271803675,62.5962051812427 +00:01:00.6286,69.656367437846,-5.66175270106391,-16.6522138266585,-0.0344189503506975,62.5778092846976 +00:01:00.6437,69.6564069142143,-5.62475107282008,-16.5433855082944,-0.034325845417572,62.5594713019339 +00:01:00.6588,69.6564462095595,-5.60932141145862,-16.4980041513489,-0.0342871823899756,62.5411680187423 +00:01:00.6804,69.656502318361,-5.61796678227897,-16.5234317125852,-0.0343094633496747,62.5150265808865 +00:01:00.7020,69.6565585856287,-5.64480972740701,-16.6023815511971,-0.0343777785561693,62.4888542389932 +00:01:00.7236,69.6566150880173,-5.6695064270387,-16.675018903055,-0.0344407355237836,62.462636179724 +00:01:00.7452,69.6566717555848,-5.68009560150197,-16.7061635338293,-0.0344680562956008,62.4363858613294 +00:01:00.7667,69.6567284568329,-5.6758581395288,-16.6937004103788,-0.034457871236686,62.4101286416383 +00:01:00.7938,69.6567993592027,-5.66141702711992,-16.6512265503527,-0.0344219759774697,62.3772651529837 +00:01:00.8208,69.6568701134262,-5.64929379845297,-16.6155699954499,-0.0343919278305918,62.3444296510787 +00:01:00.8478,69.6569407806113,-5.64618447204812,-16.6064249177886,-0.0343847144994915,62.3116103328561 +00:01:00.8864,69.6570416655167,-5.65149967110149,-16.6220578561808,-0.0343991741663244,62.2647619081297 +00:01:00.9249,69.6571426244128,-5.65699648060031,-16.6382249429421,-0.0344141403710306,62.2178977984609 +00:01:00.9635,69.6572436150607,-5.65645794212855,-16.6366410062605,-0.03441381326664,62.1710261450409 +00:01:01.0000,69.657339027838,-5.65235205598559,-16.6245648705458,-0.0344043758699366,62.1267329535632 +00:01:01.0030,69.6573469514811,-5.65413769197606,-16.6298167411061,-0.0344090015644914,62.1230544140549 +00:01:01.0060,69.6573548807052,-5.66021903851315,-16.6477030544505,-0.0344245551301298,62.1193747824388 +00:01:01.0090,69.6573628217895,-5.67111012885297,-16.679735673097,-0.0344523467209693,62.1156928401911 +00:01:01.0121,69.6573707810456,-5.68633179760212,-16.724505287065,-0.034491160420861,62.1120073620947 +00:01:01.0176,69.6573853793133,-5.72243410576274,-16.830688546361,-0.0345831905352677,62.1052657595513 +00:01:01.0281,69.6574134980608,-5.80793671646281,-17.0821668131259,-0.034801172253441,62.0923609223231 +00:01:01.0386,69.6574420447243,-5.90077370889138,-17.355216790857,-0.0350379732874984,62.0793728389046 +00:01:01.0492,69.6574710116458,-5.98398826225359,-17.5999654772164,-0.0352504142245674,62.0663029467555 +00:01:01.0597,69.6575003273905,-6.04602651629763,-17.7824309302872,-0.0354090169749914,62.0531650817374 +00:01:01.0725,69.6575363000746,-6.08580286370669,-17.8994201873726,-0.0355110754347784,62.0371181199435 +00:01:01.0887,69.6575818164984,-6.08571794850343,-17.8991704367748,-0.0355117128103855,62.0168479718459 +00:01:01.1049,69.6576272026198,-6.04720317107663,-17.7858916796371,-0.0354143081885513,61.9966027029351 +00:01:01.1210,69.6576722680375,-5.99461162927411,-17.6312106743356,-0.0352809283005533,61.976419380266 +00:01:01.1372,69.6577169833779,-5.94946822996291,-17.4984359704791,-0.035166486973628,61.9563037518801 +00:01:01.1534,69.6577614429707,-5.9243579706619,-17.4245822666526,-0.0351031272358916,61.9362374838784 +00:01:01.1695,69.6578057965092,-5.92142161990996,-17.4159459409117,-0.0350963594560334,61.9161914453695 +00:01:01.1896,69.6578608733998,-5.93826194288374,-17.4654763025992,-0.0351402960460786,61.8913144666579 +00:01:01.2097,69.6579161250702,-5.96247802533476,-17.536700074514,-0.035203131832813,61.8664027551933 +00:01:01.2297,69.6579715580077,-5.98017523390721,-17.5887506879624,-0.0352493596989703,61.8414550158972 +00:01:01.2498,69.6580270918254,-5.98515197091054,-17.6033881497369,-0.0352630899798886,61.8164869011353 +00:01:01.2797,69.6581099247081,-5.97566220695938,-17.5754770792923,-0.0352403062403304,61.7792340700034 +00:01:01.3096,69.6581926110628,-5.96080036252559,-17.5317657721341,-0.0352037475756952,61.7420082773678 +00:01:01.3395,69.6582751603409,-5.95311192728923,-17.5091527273213,-0.0351855434163765,61.7048076846922 +00:01:01.3695,69.6583576683627,-5.95463110894348,-17.5136209086573,-0.0351909444786048,61.6676135630532 +00:01:01.4133,69.6584785399198,-5.96065520243538,-17.5313388306923,-0.0352086446200413,61.6131393133678 +00:01:01.4571,69.6585994621617,-5.96195754146084,-17.5351692395907,-0.0352142765465829,61.5586516332194 +00:01:01.5000,69.6587176535218,-5.95793658260562,-17.5233428900165,-0.0352062075496769,61.5053839170488 +00:01:01.5034,69.6587272809647,-5.96017742335637,-17.529933598107,-0.0352121561152914,61.501044871523 +00:01:01.5069,69.658736916297,-5.96753969358834,-17.5515873340834,-0.0352312779240812,61.496704254976 +00:01:01.5104,69.6587465679302,-5.98043908730236,-17.5895267273599,-0.0352646458586812,61.4923604168665 +00:01:01.5139,69.6587562440811,-5.99813913394028,-17.6415856880596,-0.0353103697943357,61.4880117442936 +00:01:01.5207,69.6587751095219,-6.04178482717856,-17.7699553740546,-0.035423049544747,61.4795579962425 +00:01:01.5321,69.6588072269651,-6.12863366394245,-18.0253931292425,-0.0356472701345647,61.4652530867623 +00:01:01.5435,69.6588397955461,-6.21615607370636,-18.2828119814893,-0.0358733850818825,61.4508592911765 +00:01:01.5549,69.6588727746852,-6.28774172886808,-18.4933580260826,-0.0360586002012939,61.4363845245432 +00:01:01.5663,69.6589060594419,-6.33368464147342,-18.6284842396277,-0.0361778481981799,61.4218493619182 +00:01:01.5812,69.6589498514713,-6.35250641767366,-18.6838424049225,-0.0362275213680839,61.4027761292218 +00:01:01.5961,69.6589936497282,-6.33361604537124,-18.628282486386,-0.036179966553025,61.3837010734791 +00:01:01.6110,69.6590372570254,-6.29340352562438,-18.5100103694835,-0.0360773805139384,61.3646629872875 +00:01:01.6260,69.6590805867467,-6.24962426162498,-18.3812478283088,-0.0359655366083542,61.345678933882 +00:01:01.6409,69.6591236572956,-6.21597559424528,-18.2822811595449,-0.0358797787710478,61.326745317051 +00:01:01.6558,69.6591665566716,-6.19924672014128,-18.2330785886508,-0.0358376529979606,61.3078448356478 +00:01:01.6777,69.6592293435541,-6.20202375410595,-18.2412463356057,-0.0358463665318949,61.280167018229 +00:01:01.6995,69.6592922351414,-6.22286557515426,-18.3025458092772,-0.0359017766123596,61.2524673590396 +00:01:01.7214,69.6593553195522,-6.24406801707423,-18.3649059325713,-0.0359581833548232,61.2247284623752 +00:01:01.7432,69.6594185512861,-6.25417611113901,-18.3946356209971,-0.0359859575226508,61.1969592653694 +00:01:01.7702,69.6594966536045,-6.25008176194207,-18.3825934174767,-0.0359773999000749,61.1626654616125 +00:01:01.7972,69.6595746644071,-6.23730213109122,-18.3450062679154,-0.0359463526258146,61.1283877947285 +00:01:01.8242,69.6596525462208,-6.22691483782635,-18.3144554053716,-0.0359214796456228,61.0941336697684 +00:01:01.8579,69.6597495971008,-6.22412172963765,-18.3062403812872,-0.0359167825020907,61.0514237651923 +00:01:01.9072,69.6598918417161,-6.22882108001586,-18.3200620000467,-0.0359327426709758,60.9888244441697 +00:01:01.9566,69.660034131443,-6.23102444937244,-18.3265424981542,-0.0359422925070766,60.9262095642234 +00:01:02.0000,69.6601592561072,-6.22759315543487,-18.3164504571614,-0.035936777966938,60.8711379658871 +00:01:02.0040,69.6601710020375,-6.23048156527336,-18.3249457802157,-0.0359446117492697,60.8659683352401 +00:01:02.0081,69.6601827595361,-6.23951533769158,-18.3515156990929,-0.0359684328162891,60.8607963625809 +00:01:02.0122,69.6601945399785,-6.25491824490951,-18.3968183673809,-0.0360088286966852,60.855619790167 +00:01:02.0162,69.6602063541106,-6.27557961152504,-18.4575870927207,-0.0360629158151377,60.8504364843779 +00:01:02.0247,69.6602309852848,-6.32826897947748,-18.6125558219926,-0.0362007379509561,60.8396648266739 +00:01:02.0371,69.6602675951638,-6.41409519406753,-18.8649858649045,-0.0364252691692887,60.8237490248484 +00:01:02.0495,69.6603046657869,-6.49249525374557,-19.0955742757223,-0.0366306302590648,60.8077412072354 +00:01:02.0619,69.660342113356,-6.54837053100312,-19.2599133264798,-0.0367774436710451,60.7916579637871 +00:01:02.0743,69.6603797959312,-6.57523542020065,-19.3389277064725,-0.0368487277424287,60.7755274642991 +00:01:02.0918,69.6604330026806,-6.56986498033474,-19.3231322951022,-0.0368365137527755,60.752767407877 +00:01:02.1093,69.6604860502954,-6.53225667885557,-19.2125196436929,-0.0367401871408507,60.7300379223967 +00:01:02.1268,69.6605387819257,-6.48651367632496,-19.0779814009558,-0.0366225677078001,60.7073702415326 +00:01:02.1443,69.6605912036332,-6.45198233380746,-18.9764186288455,-0.0365341374923234,60.6847631941057 +00:01:02.1618,69.6606434327452,-6.43773877040028,-18.9345257952949,-0.0364986243782247,60.6621934505155 +00:01:02.1854,69.6607137282244,-6.4454655050832,-18.9572514855388,-0.0365210652882785,60.6318084388874 +00:01:02.2089,69.6607841638483,-6.46714419601898,-19.0210123412323,-0.0365800128927931,60.6013935890327 +00:01:02.2325,69.6608547915778,-6.4846706583666,-19.0725607599018,-0.0366281764433332,60.5709385043037 +00:01:02.2561,69.6609255296884,-6.48900136651867,-19.0852981368196,-0.0366418698530708,60.540459449696 +00:01:02.2879,69.6610211086329,-6.47919225010077,-19.056447794414,-0.0366193990633186,60.4992640272028 +00:01:02.3198,69.6611165393753,-6.46568926792352,-19.0167331409515,-0.0365872330079827,60.458094613874 +00:01:02.3516,69.6612118426744,-6.4594659226863,-18.9984291843715,-0.0365741277880281,60.4169470649904 +00:01:02.3919,69.661332474168,-6.46151829876414,-19.0044655846004,-0.0365836009345262,60.3648507401174 +00:01:02.4418,69.6614816419762,-6.46508626972836,-19.0149596168481,-0.0365980833921602,60.3004321511604 +00:01:02.4916,69.6616308039272,-6.46283695119047,-19.0083439740896,-0.0365973391107145,60.2360056922747 +00:01:02.5000,69.6616557160242,-6.46175635295379,-19.0051657439817,-0.0365953643445301,60.2252438637099 +00:01:02.5048,69.6616703328373,-6.46557560350444,-19.0163988338366,-0.0366059232050481,60.2189303611385 +00:01:02.5097,69.6616849675698,-6.47702152273091,-19.0500633021497,-0.0366365549389669,60.2126131732985 +00:01:02.5146,69.6616996364445,-6.49591886889564,-19.105643732046,-0.0366868067779027,60.2062890423501 +00:01:02.5195,69.6617143539846,-6.5205266875234,-19.1780196691865,-0.036752105170571,60.1999550503417 +00:01:02.5303,69.6617470980124,-6.58387425449971,-19.3643360426462,-0.0369200904670836,60.1859138790007 +00:01:02.5439,69.6617888976213,-6.66467844902602,-19.6019954383118,-0.0371345169929686,60.1680910321549 +00:01:02.5575,69.6618311406965,-6.72842850562154,-19.7894956047692,-0.0373041728868886,60.1501782811493 +00:01:02.5712,69.6618736889495,-6.76357363227226,-19.8928636243302,-0.0373985339565621,60.1322033678827 +00:01:02.5884,69.6619275480176,-6.76700367732243,-19.9029519921248,-0.0374097569649833,60.1094805566663 +00:01:02.6056,69.6619813185949,-6.73842456428185,-19.8188957772996,-0.0373365196676079,60.0867742457761 +00:01:02.6228,69.6620348325475,-6.69803923348074,-19.7001153925904,-0.0372320660555558,60.0641182916333 +00:01:02.6400,69.6620880639388,-6.66391610747265,-19.5997532572725,-0.0371440770554314,60.0415179472557 +00:01:02.6572,69.662141095112,-6.64621627297212,-19.5476949205062,-0.0370994084867858,60.0189566585682 +00:01:02.6798,69.6622105230666,-6.64752815507827,-19.551553397289,-0.0371055930338159,59.989400273681 +00:01:02.7023,69.6622800318531,-6.66440415588524,-19.6011886937801,-0.0371529483465978,59.9598254053759 +00:01:02.7249,69.6623496998758,-6.68147863624739,-19.6514077536688,-0.0372008910001115,59.9302162136171 +00:01:02.7474,69.6624194857934,-6.68887899621831,-19.6731735182891,-0.0372232877207168,59.9005810056282 +00:01:02.7773,69.662512056729,-6.68356315448197,-19.6575386896528,-0.0372129632823996,59.8612682160946 +00:01:02.8072,69.6626045219721,-6.67133495036776,-19.6215733834346,-0.0371843177378986,59.8219728294305 +00:01:02.8372,69.6626968600742,-6.66279458134959,-19.5964546510282,-0.0371654291906038,59.7826991828875 +00:01:02.8759,69.6628162896003,-6.66152776027393,-19.592728706688,-0.0371669467344163,59.7318797256164 +00:01:02.9342,69.6629961477553,-6.66441530763413,-19.6012214930416,-0.0371820347356715,59.6553363396885 +00:01:02.9925,69.6631759856941,-6.66262785010719,-19.5959642650211,-0.0371847809502453,59.5787816932847 +00:01:03.0000,69.6631990693758,-6.66182742678409,-19.5936100787767,-0.0371836184976405,59.5689535295149 +00:01:03.0053,69.6632154553305,-6.66583666838591,-19.6054019658409,-0.0371949805035415,59.5619780314351 +00:01:03.0106,69.6632318613558,-6.67752707971956,-19.6397855285869,-0.0372267995661619,59.5549983272523 +00:01:03.0159,69.6632483048669,-6.69650566434294,-19.6956048951263,-0.0372780386010239,59.5480108779313 +00:01:03.0212,69.6632648010003,-6.7208311763837,-19.7671505187756,-0.0373435367804216,59.5410126057032 +00:01:03.0333,69.6633027608086,-6.78348125988634,-19.9514154702539,-0.0375121132924574,59.5249628154316 +00:01:03.0481,69.6633493282427,-6.8558530595395,-20.1642737045279,-0.0377071151076028,59.505371855946 +00:01:03.0628,69.6633963040282,-6.90689578022532,-20.3143993536039,-0.0378454001237516,59.4856967419636 +00:01:03.0776,69.6634435206584,-6.9279094043486,-20.3762041304371,-0.0379036682630608,59.4659714945433 +00:01:03.0979,69.6635086176706,-6.91549579421837,-20.339693512407,-0.037873584582364,59.4387804459493 +00:01:03.1182,69.6635734982006,-6.87730675775425,-20.2273728169243,-0.037774633897667,59.4116313202303 +00:01:03.1386,69.6636380474113,-6.83938958656712,-20.1158517251974,-0.0376763263948132,59.3845475438236 +00:01:03.1589,69.6637023352674,-6.81860802928021,-20.054729497883,-0.0376237386155176,59.3575149009117 +00:01:03.1792,69.6637665231925,-6.81818553315971,-20.0534868622344,-0.0376255514880839,59.3305005089578 +00:01:03.2053,69.6638489565856,-6.83385236825851,-20.0995657889956,-0.03767126477854,59.295822902686 +00:01:03.2314,69.6639315592865,-6.85023241722301,-20.1477424035971,-0.0377189612317509,59.2611072044319 +00:01:03.2575,69.6640142777579,-6.85547233952137,-20.1631539397687,-0.0377368850723233,59.2263643021228 +00:01:03.2903,69.6641183218028,-6.84760723810226,-20.1400212885361,-0.0377207192432101,59.1826541214481 +00:01:03.3231,69.6642222347016,-6.83550843718448,-20.1044365799544,-0.037693186485401,59.1389650799981 +00:01:03.3559,69.664326023677,-6.82904970034227,-20.0854402951243,-0.0376807747029429,59.0952956984161 +00:01:03.3997,69.6644646102985,-6.82941380919943,-20.0865112035277,-0.0376883651333239,59.036964276306 +00:01:03.4567,69.6646449125289,-6.83074869784913,-20.0904373466151,-0.0377006355620776,58.9610590563395 +00:01:03.5000,69.6647815590057,-6.82806090805613,-20.082532082518,-0.0377000310379859,58.9035146109271 +00:01:03.5059,69.6648004617875,-6.83244681720076,-20.0954318152963,-0.0377127701681414,58.8955546220463 +00:01:03.5119,69.6648193886746,-6.84487359767974,-20.1319811696463,-0.0377471848839276,58.8875894824521 +00:01:03.5179,69.6648383596664,-6.86458965543031,-20.189969574795,-0.0378012608078242,58.8796150784618 +00:01:03.5252,69.6648616663582,-6.89498242983327,-20.2793600877449,-0.0378843564787107,58.8698360696823 +00:01:03.5388,69.6649054280878,-6.95532309148021,-20.4568326220006,-0.0380493014069011,58.8515349760716 +00:01:03.5525,69.6649495385278,-7.0082061306043,-20.6123709723656,-0.0381942632834651,58.8331610453883 +00:01:03.5661,69.664993916252,-7.04220062096639,-20.7123547675482,-0.0382883502935464,58.814730986358 +00:01:03.5837,69.6650510815815,-7.05367211463323,-20.7460944548036,-0.0383223515007393,58.791024794199 +00:01:03.6012,69.6651082324293,-7.03698187512428,-20.6970055150714,-0.0382802886095119,58.7673197261095 +00:01:03.6187,69.6651652075991,-7.00694155083657,-20.6086516201075,-0.038202107637988,58.7436490087753 +00:01:03.6363,69.6652219581774,-6.9785573260194,-20.5251686059394,-0.0381283459801682,58.7200227505336 +00:01:03.6538,69.6652785309786,-6.96150035281069,-20.4750010376785,-0.0380851693127566,58.6964313231869 +00:01:03.6775,69.6653549764257,-6.95880063381799,-20.4670606877,-0.0380818562756944,58.664528995149 +00:01:03.7064,69.6654481178292,-6.97229499588061,-20.5067499878841,-0.0381232838984228,58.6256683263965 +00:01:03.7353,69.6655414121247,-6.98583183505616,-20.5465642207534,-0.0381649049095581,58.5867710451936 +00:01:03.7641,69.6656347970455,-6.98818103368886,-20.5534736284967,-0.038176258915,58.5478499730156 +00:01:03.8013,69.6657551022234,-6.97864596271744,-20.5254293021101,-0.0381568349491648,58.497688273286 +00:01:03.8386,69.6658752568912,-6.9677872498126,-20.4934919112135,-0.0381338038598981,58.4475492702665 +00:01:03.8758,69.6659952980403,-6.9636376109312,-20.4812870909741,-0.0381290004000278,58.3974252877773 +00:01:03.9294,69.6661680867538,-6.96416631001254,-20.4828420882722,-0.0381398226320414,58.3252517263971 +00:01:03.9830,69.6663408419064,-6.96304934252726,-20.4795568897861,-0.0381462410478068,58.253067293761 +00:01:04.0000,69.6663956063285,-6.96158796518876,-20.4752587211434,-0.0381452711128511,58.2301784782079 +00:01:04.0079,69.6664211606667,-6.96813873863096,-20.4945257018558,-0.0381645498399098,58.219500105509 +00:01:04.0158,69.6664467599201,-6.98537067422457,-20.5452078653664,-0.0382129824023687,58.2088119891264 +00:01:04.0237,69.6664724365264,-7.01093084291288,-20.6203848320967,-0.038284168529804,58.1981073718517 +00:01:04.0332,69.6665034146563,-7.04635364292646,-20.724569538019,-0.0383826107890158,58.1852197335059 +00:01:04.0482,69.6665522958672,-7.09755941090548,-20.8751747379573,-0.038525243051609,58.164943802385 +00:01:04.0631,69.6666014688926,-7.13330310830433,-20.9803032597186,-0.0386257555076707,58.1446055806088 +00:01:04.0813,69.6666614426571,-7.14805481110444,-21.0236906208954,-0.0386695953066464,58.1198392481817 +00:01:04.1048,69.6667391037836,-7.13161783561969,-20.975346575352,-0.0386292127909365,58.0877619358095 +00:01:04.1283,69.6668165227312,-7.0985170729524,-20.8779913910365,-0.0385431833144621,58.0557313956499 +00:01:04.1518,69.6668936479009,-7.07250076657551,-20.8014728428692,-0.0384764642756647,58.0237584364659 +00:01:04.1753,69.6669705984781,-7.06454929337744,-20.7780861569925,-0.0384591707560826,57.9918182045824 +00:01:04.2059,69.6670708557176,-7.07361128217401,-20.8047390652177,-0.0384898758677463,57.9502001059663 +00:01:04.2365,69.6671712408546,-7.08668578301283,-20.8431934794495,-0.038531659741466,57.9085488660259 +00:01:04.2672,69.6672717233931,-7.09031364411402,-20.8538636591589,-0.0385475880274788,57.8668708137657 +00:01:04.3045,69.667394221295,-7.08231778143613,-20.8303464159886,-0.0385329328465989,57.816043935208 +00:01:04.3497,69.6675423383589,-7.070581913875,-20.7958291584559,-0.0385095311454006,57.7545369714844 +00:01:04.3949,69.6676903070833,-7.06581039589806,-20.7817952820531,-0.0385052975423407,57.6930469458001 +00:01:04.4543,69.6678844400862,-7.06529208248479,-20.7802708308376,-0.0385156316122979,57.6123356585449 +00:01:04.5000,69.6680338383231,-7.06365303379356,-20.7754500993928,-0.0385202295267215,57.5501971256801 +00:01:04.5087,69.6680624181321,-7.0702086154893,-20.7947312220273,-0.0385400875745442,57.5383111068413 +00:01:04.5174,69.6680910457357,-7.08656937970481,-20.8428511167789,-0.0385870468089669,57.5264144739532 +00:01:04.5262,69.6681197525688,-7.11003192412001,-20.911858600353,-0.0386536581819128,57.5145005953241 +00:01:04.5372,69.6681560671145,-7.1425766197988,-21.0075782935259,-0.0387458854517939,57.4994573345959 +00:01:04.5538,69.6682112110467,-7.18389876715595,-21.1291140210469,-0.038863642797913,57.4766684861969 +00:01:04.5704,69.6682665957061,-7.20729230208999,-21.1979185355588,-0.0389319080856063,57.4538267861766 +00:01:04.5918,69.6683378609966,-7.208315132962,-21.2009268616529,-0.0389393261757886,57.4244544534023 +00:01:04.6132,69.66840904219,-7.18796481166085,-21.1410729754731,-0.0388875514149429,57.395096438675 +00:01:04.6345,69.6684800179316,-7.16300727065383,-21.0676684430995,-0.038822959061278,57.3657783949329 +00:01:04.6559,69.6685508015246,-7.1465230111723,-21.0191853269774,-0.038781799760025,57.3364975388775 +00:01:04.6823,69.6686380533279,-7.14307644189888,-21.0090483585261,-0.0387778364159629,57.3003767702851 +00:01:04.7185,69.6687579501009,-7.15288176796488,-21.0378875528379,-0.0388127852599223,57.2507429958926 +00:01:04.7547,69.6688779596903,-7.1607920766083,-21.061153166495,-0.0388425608630288,57.2010753781546 +00:01:04.7909,69.6689979940323,-7.15777872787555,-21.0522903761046,-0.0388420270888074,57.1513925206866 +00:01:04.8415,69.6691654816,-7.14623831299555,-21.0183479793987,-0.0388208968234572,57.0820190383916 +00:01:04.8921,69.6693327791217,-7.13857896753515,-20.9958204927504,-0.0388105846076792,57.0126662628185 +00:01:04.9528,69.6695334556362,-7.13612838660047,-20.9886129017661,-0.0388170722280439,56.9294234831712 +00:01:05.0000,69.6696891272784,-7.13447511861153,-20.9837503488575,-0.0388228655761186,56.8648166837123 +00:01:05.0114,69.6697271310097,-7.14294049918937,-21.0086485270276,-0.0388490973794072,56.8490462571346 +00:01:05.0229,69.6697652099961,-7.16219670553768,-21.065284428052,-0.0389055455213069,56.8332587284217 +00:01:05.0344,69.6698034035501,-7.1871297548319,-21.1386169259762,-0.0389779267564931,56.8174456920227 +00:01:05.0490,69.6698519020021,-7.21654011702986,-21.2251179912643,-0.0390636013905444,56.7974003336952 +00:01:05.0685,69.6699172368736,-7.24054688681579,-21.2957261376935,-0.0391353757287195,56.7704391486446 +00:01:05.0924,69.66999725199,-7.24281537452272,-21.3023981603609,-0.039147309213319,56.7374419555252 +00:01:05.1163,69.6700771939698,-7.22522078680905,-21.2506493729678,-0.0391035418456428,56.7044557222049 +00:01:05.1401,69.670156941731,-7.20399982919384,-21.1882347917466,-0.0390495501122771,56.671506364843 +00:01:05.1640,69.6702365160358,-7.19138546471457,-21.1511337197487,-0.0390196735969341,56.6385894646159 +00:01:05.1942,69.6703370623011,-7.19067041295255,-21.149030626331,-0.0390246807519975,56.5969735326427 +00:01:05.2333,69.6704673100411,-7.19861037863769,-21.1723834665815,-0.0390561494997558,56.5430635024124 +00:01:05.2724,69.6705976242109,-7.20155009029666,-21.1810296773431,-0.0390736333621034,56.4891265426411 +00:01:05.3115,69.6707279039951,-7.19560797971591,-21.1635528815174,-0.0390661444639007,56.4351842412256 +00:01:05.3739,69.6709354457909,-7.18424277723007,-21.1301258153826,-0.0390488964270715,56.3491790655172 +00:01:05.4362,69.6711427702008,-7.17834368158083,-21.1127755340613,-0.0390471253595032,56.2631879871525 +00:01:05.5000,69.6713545464807,-7.17523950207397,-21.1036455943352,-0.0390536751071392,56.175288466454 +00:01:05.5180,69.6714145319535,-7.18797109867455,-21.1410914666899,-0.0390941176851949,56.1503940929472 +00:01:05.5330,69.6714644222485,-7.20791707514972,-21.1997561033815,-0.0391543118650944,56.1297090959742 +00:01:05.5479,69.6715144476182,-7.22867833204687,-21.2608186236673,-0.0392168776110069,56.1089929420062 +00:01:05.5701,69.6715888413597,-7.24713317227697,-21.3150975655205,-0.0392747693530723,56.078219205618 +00:01:05.5971,69.6716794358324,-7.24705060880092,-21.3148547317674,-0.0392813091659748,56.0407579570545 +00:01:05.6242,69.6717699454698,-7.23159835675172,-21.2694069316227,-0.0392441907521876,56.0033086429433 +00:01:05.6512,69.6718602777068,-7.21537178967835,-21.2216817343481,-0.0392048293663697,55.9658913318146 +00:01:05.6782,69.671950472396,-7.20773070161781,-21.1992079459347,-0.0391898563073725,55.9284973985222 +00:01:05.7155,69.6720752003482,-7.20923297486626,-21.2036263966655,-0.0392035204623685,55.8767661781395 +00:01:05.7529,69.6721999557836,-7.21340015519922,-21.2158828094095,-0.0392248397996613,55.8250165452825 +00:01:05.7981,69.6723507553163,-7.21114252608859,-21.20924272379,-0.0392298820009119,55.7624464690415 +00:01:05.8576,69.6725492532947,-7.20153101917276,-21.1809735858022,-0.0392176278642302,55.6800250194412 +00:01:05.9171,69.6727475397514,-7.19368180788267,-21.1578876702432,-0.0392104495646053,55.5976176831875 +00:01:06.0000,69.6730234124731,-7.18747152542906,-21.1396221336149,-0.0392140765792559,55.4828614990902 +00:01:06.0551,69.6732074747387,-7.2120289691757,-21.2118499093403,-0.0392990456295066,55.4063187384801 +00:01:06.0838,69.6733030910973,-7.22401381399057,-21.2470994529134,-0.03934108132647,55.3665837568499 +00:01:06.1124,69.6733987689578,-7.22313082894464,-21.2445024380725,-0.0393461682691741,55.3268276112995 +00:01:06.1509,69.6735275430728,-7.21015476284853,-21.2063375377898,-0.0393191023484946,55.2732833429378 +00:01:06.1895,69.673656126449,-7.19837451733886,-21.171689756879,-0.0392954554927247,55.2197669760748 +00:01:06.2280,69.6737845869979,-7.19481256768024,-21.1612134343537,-0.0392955097678934,55.1662635668523 +00:01:06.2867,69.673979915544,-7.19456669617445,-21.160490282866,-0.039310602452932,55.0848712454877 +00:01:06.3453,69.6741751562373,-7.19072328781276,-21.1491861406258,-0.0393153966155603,55.0034654526525 +00:01:06.4199,69.6744234251098,-7.18117545271808,-21.1211042727002,-0.0393081120208504,54.8998552003601 +00:01:06.5000,69.6746892769736,-7.17230024811496,-21.0950007297499,-0.0393043480434803,54.788785319328 +00:01:06.6000,69.6750214090076,-7.17328666334886,-21.097901951026,-0.0393350157593005,54.6499109220753 +00:01:06.6999,69.6753532634071,-7.16470542588557,-21.0726630173105,-0.0393380930815121,54.5109995356397 +00:01:06.7999,69.6756846225777,-7.15122627440114,-21.033018454121,-0.0393270335294381,54.3720988711797 +00:01:06.8999,69.6760154826778,-7.14117437253272,-21.0034540368609,-0.0393261805437466,54.2332090740682 +00:01:07.0000,69.676345897107,-7.13233066103514,-20.9774431206916,-0.0393290812130259,54.0943174920313 +00:01:07.1000,69.6766753189594,-7.10282332238877,-20.8906568305552,-0.0392711506650994,53.9555466833107 +00:01:07.1609,69.676875679162,-7.09369545227722,-20.8638101537565,-0.0392619778612151,53.871004402008 +00:01:07.2219,69.6770759023991,-7.09333348644965,-20.8627455483813,-0.039278819647929,53.7864545138905 +00:01:07.2828,69.677276032264,-7.08988264222596,-20.8525960065469,-0.0392866280591709,53.7018870090245 +00:01:07.3604,69.677530522554,-7.07990658063145,-20.823254648916,-0.0392801082588404,53.5942426443365 +00:01:07.4604,69.6778580317487,-7.06841183206109,-20.7894465648856,-0.0392759003542083,53.455527974908 +00:01:07.5000,69.6779873502831,-7.06485768021939,-20.7789931771158,-0.0392772380991083,53.4007000463526 +00:01:07.5310,69.6780886680054,-7.04258041833751,-20.7134718186397,-0.0392200984831259,53.3576897307055 +00:01:07.5538,69.6781628501301,-7.01983699361005,-20.6465793929707,-0.0391590035592086,53.3261485924331 +00:01:07.5766,69.6782368439008,-7.00419510538661,-20.6005738393724,-0.039119074746066,53.294644883107 +00:01:07.6057,69.6783311706411,-7.00031308096794,-20.5891561204939,-0.0391161797053885,53.2544526102698 +00:01:07.6426,69.6784508817944,-7.0077810577102,-20.6111207579712,-0.0391496528496975,53.2034359244545 +00:01:07.6795,69.6785706690149,-7.01290484354835,-20.6261907163187,-0.0391761979094214,53.1523873102375 +00:01:07.7164,69.6786904511311,-7.00867772166086,-20.6137580048849,-0.0391747585964694,53.1013252599978 +00:01:07.7721,69.6788709222576,-6.99669341369804,-20.5785100402884,-0.0391557703507962,53.0243247661141 +00:01:07.8277,69.6790511715404,-6.98881149292231,-20.5553279203598,-0.0391491328912483,52.9473416404992 +00:01:07.8956,69.6792707177843,-6.98451730755015,-20.5426979633828,-0.0391571255449972,52.8534928559881 +00:01:07.9894,69.679573795935,-6.97631059008533,-20.5185605590745,-0.039161499235778,52.7237936444692 +00:01:08.0000,69.6796079083162,-6.97511271477186,-20.5150373963878,-0.0391611768796643,52.7091850270943 +00:01:08.0150,69.6796564497401,-6.96223652697961,-20.4771662558224,-0.0391269232317373,52.6883839302124 +00:01:08.0300,69.6797048631777,-6.93829343048436,-20.4067453837775,-0.03905914551928,52.6676098842634 +00:01:08.0451,69.6797531070851,-6.91166414917533,-20.3284239681627,-0.038983181064771,52.6468725036333 +00:01:08.0639,69.6798131111933,-6.88703880551329,-20.2559964868038,-0.0389143689037062,52.6210342405649 +00:01:08.0872,69.6798873988742,-6.87623606938892,-20.2242237334968,-0.0388887620150374,52.5890044230718 +00:01:08.1193,69.6799897760266,-6.8851312730687,-20.2503860972609,-0.0389255820149668,52.5448526517806 +00:01:08.1514,69.680092292675,-6.89968546992169,-20.2931925585932,-0.0389796791280429,52.5006573570474 +00:01:08.1836,69.6801949168256,-6.90321940657574,-20.3035864899286,-0.0390004107382106,52.456425869876 +00:01:08.2157,69.6802975067329,-6.89492202115644,-20.279182415166,-0.0389852134575575,52.4121909841786 +00:01:08.2576,69.6804310871635,-6.8816630380103,-20.2401854059126,-0.0389579531867443,52.3545387795273 +00:01:08.2995,69.6805644997314,-6.87516103863023,-20.2210618783242,-0.0389512590971185,52.2969061755017 +00:01:08.3527,69.6807338603728,-6.87388867160758,-20.2173196223752,-0.0389641126818286,52.2236974719661 +00:01:08.4180,69.6809416066926,-6.87008182726966,-20.2061230213813,-0.0389731519354848,52.1338312567062 +00:01:08.5000,69.681202108172,-6.86000099401352,-20.1764735118045,-0.038968411657257,52.021020711581 +00:01:08.5118,69.6812398534233,-6.84829739787969,-20.1420511702344,-0.0389363335643554,52.0046565651429 +00:01:08.5237,69.6812775011996,-6.82507098703786,-20.0737381971702,-0.038868895870389,51.9883136233326 +00:01:08.5356,69.6813150091557,-6.79621584156041,-19.9888701222365,-0.0387841490898684,51.9720018081005 +00:01:08.5501,69.6813603744053,-6.76399114952288,-19.8940916162438,-0.0386898076085248,51.9522308913613 +00:01:08.5690,69.6814194456187,-6.7374959493554,-19.8161645569276,-0.0386143564850683,51.9264337476166 +00:01:08.5922,69.6814918459634,-6.73146442289882,-19.7984247732318,-0.0386030155793256,51.8947773055451 +00:01:08.6154,69.6815642739303,-6.74474248988728,-19.8374779114332,-0.0386510221144881,51.8631084729316 +00:01:08.6386,69.6816368448966,-6.76162779911018,-19.8871405856182,-0.0387102057800718,51.8314001693822 +00:01:08.6618,69.6817095400679,-6.77023046616623,-19.9124425475477,-0.0387439936352362,51.7996567509354 +00:01:08.6909,69.6818004902691,-6.76605039071172,-19.9001482079757,-0.0387403147235115,51.7599380322367 +00:01:08.7288,69.6819191701836,-6.7509313077797,-19.8556803169991,-0.0387057416697979,51.708063222812 +00:01:08.7667,69.6820376515955,-6.73992517004696,-19.8233093236675,-0.0386838131813166,51.6562190012099 +00:01:08.8047,69.6821560274678,-6.73789725889583,-19.8173448791054,-0.0386896043214389,51.6043834806652 +00:01:08.8677,69.6823526155432,-6.7376272179948,-19.8165506411612,-0.0387089076563882,51.5182541527521 +00:01:08.9307,69.6825490818993,-6.73203125501457,-19.8000919265134,-0.0387118461234772,51.4321085963225 +00:01:09.0000,69.6827647082508,-6.72222748741234,-19.7712573159186,-0.0387038199506399,51.3374607521082 +00:01:09.0092,69.682793374052,-6.71306106479546,-19.7442972493984,-0.0386783305001871,51.3248656713724 +00:01:09.0184,69.6828219773427,-6.69366952084113,-19.6872632965916,-0.0386210523241749,51.3122844349375 +00:01:09.0276,69.6828504845076,-6.66729644826951,-19.6096954360868,-0.0385420464159741,51.2997250198454 +00:01:09.0388,69.6828851057221,-6.63304086518816,-19.5089437211416,-0.0384391407794488,51.2844390126273 +00:01:09.0552,69.6829352736296,-6.59199914198308,-19.3882327705385,-0.0383166820331938,51.2622295990291 +00:01:09.0716,69.6829852046577,-6.56873130076636,-19.3197979434305,-0.0382494114839097,51.2400734081006 +00:01:09.0932,69.6830507563685,-6.56607316270528,-19.3119798903096,-0.038247828335619,51.2109569035841 +00:01:09.1147,69.6831163676742,-6.58314213283532,-19.3621827436333,-0.038307696223748,51.1818211263827 +00:01:09.1363,69.6831821460852,-6.60328825083137,-19.421436031857,-0.0383772476999198,51.15264049893 +00:01:09.1578,69.6832480678807,-6.61427892446637,-19.4537615425481,-0.0384183513625074,51.123420604255 +00:01:09.1843,69.6833291528374,-6.61146916245492,-19.4454975366321,-0.0384180296089538,51.0874812926316 +00:01:09.2188,69.6834346424654,-6.59551776041558,-19.3985816482811,-0.0383792303907388,51.040684017838 +00:01:09.2533,69.6835399277242,-6.5821029880989,-19.359126435585,-0.0383483046265213,50.9939220412032 +00:01:09.2879,69.6836450914004,-6.5787224387895,-19.3491836434985,-0.0383487417939574,50.9471756339375 +00:01:09.3377,69.6837969094498,-6.58074011298191,-19.3551179793586,-0.0383710376854054,50.8796624276955 +00:01:09.3875,69.6839486998651,-6.57913424833866,-19.3503948480549,-0.0383820759999397,50.8121276161418 +00:01:09.4373,69.6841003823267,-6.57188919102556,-19.3290858559575,-0.0383754713962975,50.7445903166375 +00:01:09.5000,69.6842907228762,-6.56295295741937,-19.3028028159393,-0.0383677338924367,50.6597555334417 +00:01:09.5074,69.6843133497559,-6.5558931267254,-19.2820386080159,-0.0383479365705766,50.6496617839365 +00:01:09.5149,69.6843359357464,-6.54001023432179,-19.2353242185935,-0.0383003471486813,50.6395772165877 +00:01:09.5223,69.6843584553636,-6.51701467928544,-19.1676902331925,-0.0382303379399487,50.6295079576123 +00:01:09.5314,69.6843858132975,-6.48443228778244,-19.0718596699483,-0.0381306285858404,50.6172504772695 +00:01:09.5463,69.6844302518456,-6.43394098168527,-18.9233558284861,-0.0379762680910449,50.5972797242524 +00:01:09.5611,69.6844743963382,-6.39655107929911,-18.8133855273503,-0.0378630829674673,50.577377193993 +00:01:09.5760,69.6845183550088,-6.37876618485587,-18.761077014282,-0.0378116166585725,50.5575169107444 +00:01:09.5982,69.6845841540045,-6.38321620799746,-18.7741653176396,-0.03783252599145,50.5277734136201 +00:01:09.6205,69.6846500818922,-6.4072678596982,-18.8449054697006,-0.0379153521821352,50.4979934505037 +00:01:09.6428,69.6847162272806,-6.43002886673366,-18.9118496080402,-0.0379942322754209,50.4681556290451 +00:01:09.6650,69.6847825236365,-6.43894041477758,-18.9380600434635,-0.038029456677987,50.4382759093762 +00:01:09.6919,69.6848625772252,-6.43137559417201,-18.9158105710941,-0.0380140946135952,50.4021893858328 +00:01:09.7188,69.6849425005132,-6.41529667109092,-18.8685196208557,-0.0379717675556577,50.3661262000416 +00:01:09.7457,69.6850222638453,-6.40291417431937,-18.832100512704,-0.037941094855265,50.3300935287605 +00:01:09.7784,69.6851192498061,-6.39909026677887,-18.8208537258202,-0.0379393760586358,50.2862461356454 +00:01:09.8281,69.6852665279258,-6.40226423090966,-18.8301889144402,-0.0379653160268643,50.2196362756 +00:01:09.8778,69.6854138002632,-6.40191228388512,-18.8291537761327,-0.037980170104923,50.1529998628136 +00:01:09.9275,69.6855609761357,-6.39467474377839,-18.8078668934659,-0.037973191158073,50.0863587749779 +00:01:10.0000,69.6857754171661,-6.38422595398351,-18.777135158775,-0.0379634047789386,49.9891520703559 +00:01:10.0024,69.6857825383856,-6.38604150181525,-18.782475005339,-0.0379699799843209,49.9859220938931 +00:01:10.0048,69.6857896641411,-6.39221259951241,-18.8006252926836,-0.0379904523850055,49.9826909464279 +00:01:10.0077,69.6857983527608,-6.40661022741725,-18.8429712571096,-0.0380373491427064,49.978754032649 +00:01:10.0106,69.6858070655563,-6.42798320170179,-18.9058329461817,-0.0381065179401683,49.9748111344214 +00:01:10.0147,69.6858192626647,-6.46718796738639,-19.0211410805482,-0.0382330100732343,49.9693033866565 +00:01:10.0236,69.6858459495231,-6.57571908301871,-19.3403502441727,-0.0385825888727165,49.9573163703667 +00:01:10.0324,69.6858731118151,-6.70209498225546,-19.7120440654572,-0.0389895443118933,49.9452125365522 +00:01:10.0412,69.6859007798291,-6.82722580093975,-20.0800758851169,-0.0393929384670256,49.9329843869671 +00:01:10.0501,69.6859289202184,-6.93604127207375,-20.4001213884522,-0.039744528580233,49.920639938437 +00:01:10.0589,69.6859574487845,-7.01857700922313,-20.6428735565386,-0.0400123005891575,49.9081996411745 +00:01:10.0707,69.6859960716681,-7.08072403639427,-20.8256589305714,-0.0402162244527807,49.8914293809347 +00:01:10.0826,69.6860348930458,-7.09050511373653,-20.8544268051075,-0.0402524785505549,49.874608586779 +00:01:10.0944,69.6860736625417,-7.05891567098729,-20.7615166793744,-0.0401561038839171,49.8577984412984 +00:01:10.1063,69.6861122000158,-7.00230371415098,-20.5950109239735,-0.03997941458769,49.8410430119665 +00:01:10.1181,69.6861504150495,-6.93797461176289,-20.4058076816555,-0.0397778678469748,49.8243644519892 +00:01:10.1299,69.6861883029715,-6.88049258809466,-20.2367429061608,-0.039598170497002,49.8077639483349 +00:01:10.1418,69.6862259244609,-6.83941758787812,-20.1159340819945,-0.039471007390382,49.7912266962222 +00:01:10.1578,69.6862764373255,-6.81549155646727,-20.0455634013743,-0.039400386296732,49.7689751048119 +00:01:10.1774,69.6863385054267,-6.8255268999395,-20.0750791174691,-0.0394401738882925,49.7416173758012 +00:01:10.1971,69.6864007478678,-6.85837481595785,-20.1716906351701,-0.0395533390671564,49.7142116363835 +00:01:10.2167,69.6864632632704,-6.89062456920645,-20.2665428506072,-0.0396647516976795,49.6867336407773 +00:01:10.2363,69.6865259875868,-6.90709329702969,-20.3149802853814,-0.0397255448290852,49.6591990122932 +00:01:10.2560,69.6865887755401,-6.90461494975489,-20.3076910286908,-0.039725417300456,49.6316433460742 +00:01:10.2823,69.6866726020829,-6.88478674818561,-20.2493727887812,-0.0396720401366822,49.5948203248574 +00:01:10.3085,69.6867562013546,-6.86332602093701,-20.1862530027559,-0.0396133213995767,49.5580434612888 +00:01:10.3348,69.6868396199475,-6.85251273365267,-20.1544492166255,-0.0395888764164011,49.5213013407567 +00:01:10.3674,69.6869431362981,-6.85339218757517,-20.1570358458093,-0.0396046970471134,49.4756798465287 +00:01:10.4000,69.6870466811175,-6.85884988046746,-20.1730878837278,-0.0396353773729104,49.4300363272445 +00:01:10.4327,69.6871502523598,-6.85911693184186,-20.1738733289466,-0.0396493470198823,49.3843712319734 +00:01:10.4764,69.6872890600882,-6.85053221000785,-20.1486241470819,-0.0396391802636044,49.3231286861702 +00:01:10.5000,69.6873637185674,-6.84398028795385,-20.1293537880996,-0.039627451684712,49.290164079356 +00:01:10.5016,69.687369009458,-6.84544452116867,-20.1336603563784,-0.0396328741016421,49.2878273226415 +00:01:10.5033,69.6873743031701,-6.85112978562412,-20.1503817224239,-0.0396519855223799,49.2854898280982 +00:01:10.5055,69.6873813630104,-6.86714904373834,-20.1974971874657,-0.0397048399037928,49.2823746721908 +00:01:10.5077,69.6873884442286,-6.89268001269262,-20.2725882726253,-0.0397885594501734,49.279254155926 +00:01:10.5100,69.6873955560264,-6.92687307247694,-20.3731560955204,-0.0399004029969749,49.2761260009105 +00:01:10.5141,69.6874087860286,-7.00843255866477,-20.6130369372493,-0.0401667956222988,49.2703281501377 +00:01:10.5214,69.6874328910478,-7.19680480250318,-21.1670729485388,-0.0407817011967728,49.2598528844269 +00:01:10.5287,69.6874576867415,-7.41925574214125,-21.8213404180625,-0.0415081766118088,49.2492055725228 +00:01:10.5360,69.6874832414401,-7.65020923249748,-22.5006153896985,-0.0422633140650929,49.2383690436237 +00:01:10.5434,69.6875095497111,-7.86797861024544,-23.1411135595454,-0.0429765366282766,49.2273443995814 +00:01:10.5512,69.6875385994072,-8.06834510558058,-23.7304267811193,-0.0436342736555594,49.2152986557559 +00:01:10.5591,69.6875682899422,-8.22129398852923,-24.1802764368507,-0.0441380702002446,49.2030922067283 +00:01:10.5693,69.6876071663051,-8.33942911210019,-24.5277326826476,-0.0445301185131669,49.1872079405406 +00:01:10.5794,69.6876463993355,-8.37244827460438,-24.6248478664835,-0.0446443646061424,49.1712325753253 +00:01:10.5896,69.687685628967,-8.33423879573913,-24.5124670462915,-0.0445257901283166,49.1552558069024 +00:01:10.5997,69.6877245732506,-8.24629528479226,-24.2538096611537,-0.0442445015838721,49.1393479520391 +00:01:10.6099,69.6877630556259,-8.13296240443729,-23.9204776601097,-0.0438800616568059,49.1235530854271 +00:01:10.6200,69.6878010088126,-8.017077921073,-23.5796409443323,-0.0435071406718046,49.1078880370143 +00:01:10.6302,69.6878384607706,-7.91677759914488,-23.2846399974849,-0.0431850294393622,49.0923458851103 +00:01:10.6403,69.6878755090724,-7.84373627619901,-23.0698125770559,-0.0429519001530287,49.0769023458288 +00:01:10.6537,69.6879240495739,-7.7958793927809,-22.9290570375909,-0.0428027730298388,49.0566047181621 +00:01:10.6671,69.6879724430466,-7.79746998535953,-22.9337352510574,-0.0428152863026137,49.0363402861148 +00:01:10.6805,69.6880209431413,-7.8338703425822,-23.0407951252418,-0.0429417620334473,49.016045756877 +00:01:10.6939,69.6880697053077,-7.88600890283394,-23.1941438318645,-0.0431199410708156,48.9956822706786 +00:01:10.7073,69.6881187742143,-7.93608093540198,-23.3414145158882,-0.0432915704741334,48.9752385864953 +00:01:10.7207,69.6881681024731,-7.97159691613357,-23.4458732827458,-0.043415676357828,48.9547264627259 +00:01:10.7381,69.688232297076,-7.98820969994914,-23.4947344116151,-0.04348021072539,48.9280599655484 +00:01:10.7616,69.688318973014,-7.97002508952616,-23.4412502633122,-0.0434341051700879,48.8920414073157 +00:01:10.7851,69.6884053666507,-7.93081828304713,-23.3259361266092,-0.0433188448787706,48.856082358175 +00:01:10.8085,69.6884914003027,-7.89783627607906,-23.228930223762,-0.043223874379245,48.8202023660694 +00:01:10.8320,69.6885771964559,-7.88468919155954,-23.1902623281163,-0.043194026256204,48.7843707999404 +00:01:10.8615,69.6886848899715,-7.89022962567288,-23.2065577225673,-0.0432291236047522,48.7393698386263 +00:01:10.8910,69.6887926711549,-7.90179858448918,-23.240584072027,-0.0432842012217218,48.6943292196865 +00:01:10.9205,69.6889005253518,-7.90427403413148,-23.2478648062691,-0.0433094112652437,48.6492525450167 +00:01:10.9563,69.6890314264929,-7.89315757336507,-23.2151693334267,-0.0432934596148383,48.594506652101 +00:01:11.0000,69.6891908719395,-7.87520276348133,-23.1623610690627,-0.0432594469254428,48.5277422373877 +00:01:11.0019,69.6891978745637,-7.87688917530206,-23.1673211038296,-0.0432661419586559,48.5248081402484 +00:01:11.0038,69.6892048809756,-7.8839802895443,-23.1881773221891,-0.0432907231382158,48.5218730110825 +00:01:11.0062,69.6892136502324,-7.90225816737204,-23.2419357863883,-0.0433526122975065,48.5182016878453 +00:01:11.0086,69.6892224453297,-7.93063733078605,-23.3254039140766,-0.0434479554173971,48.5145237212972 +00:01:11.0115,69.6892330569171,-7.97639746046462,-23.4599925307783,-0.0436011634813326,48.5100942045197 +00:01:11.0173,69.689254774559,-8.09854395251625,-23.8192469191654,-0.0440092824790973,48.5010666064247 +00:01:11.0255,69.6892859778942,-8.31442591964766,-24.4541938813166,-0.0447301687095306,48.4882001943636 +00:01:11.0337,69.6893180340126,-8.55333396957522,-25.1568646163977,-0.0455286029330099,48.4751164257262 +00:01:11.0419,69.6893509720307,-8.78513559955213,-25.8386341163298,-0.046304687063049,48.4618076015739 +00:01:11.0501,69.6893847244956,-8.98635100071133,-26.4304441197392,-0.0469801943601103,48.4482904971557 +00:01:11.0583,69.6894191494559,-9.1413767186678,-26.8864021137288,-0.0475028154703726,48.4346008608467 +00:01:11.0687,69.6894630678565,-9.25982489848361,-27.2347791131871,-0.0479058918436579,48.4172249397426 +00:01:11.0790,69.6895073559363,-9.29559577331856,-27.339987568584,-0.0480336683471068,48.3997519849505 +00:01:11.0893,69.6895516565983,-9.26155815714207,-27.2398769327708,-0.0479286084057825,48.3822727592025 +00:01:11.0996,69.6895956884422,-9.17848137850757,-26.9955334661987,-0.0476598009813677,48.3648588802964 +00:01:11.1099,69.6896392742262,-9.07019945815208,-26.677057229859,-0.047306717889704,48.3475555090518 +00:01:11.1203,69.6896823455945,-8.95917028663724,-26.3505008430507,-0.0469442916468491,48.3303801071247 +00:01:11.1306,69.6897249293006,-8.8632141590561,-26.0682769384003,-0.0466319875400398,48.3133259292718 +00:01:11.1409,69.6897671214172,-8.79372232722909,-25.8638891977326,-0.0464078323138499,48.2963685815732 +00:01:11.1552,69.6898250392583,-8.74791704309133,-25.729167773798,-0.0462655026263883,48.2730327319527 +00:01:11.1694,69.6898828183575,-8.75297510558536,-25.7440444281922,-0.0462929084057754,48.2497268911972 +00:01:11.1837,69.6899407290033,-8.79192298497565,-25.8585970146343,-0.0464336229657234,48.2263821991951 +00:01:11.1979,69.6899989238192,-8.84357477182788,-26.0105140347879,-0.0466170308235244,48.2029596820208 +00:01:11.2122,69.6900574283329,-8.88922718041726,-26.1447858247567,-0.046780628290916,48.1794527224854 +00:01:11.2264,69.6901161694667,-8.91705504279824,-26.2266324788183,-0.0468847634338291,48.1558798700856 +00:01:11.2460,69.6901967807935,-8.92190354765498,-26.2408927872205,-0.046916123304387,48.1235410510024 +00:01:11.2694,69.6902935302957,-8.89368868194333,-26.1579078880686,-0.0468396946212463,48.0846960732308 +00:01:11.2929,69.6903899447948,-8.85441956369418,-26.0424104814535,-0.0467260245714619,48.0459218091871 +00:01:11.3164,69.690486021766,-8.82677509473834,-25.9611032198186,-0.0466512054554737,48.0072190039368 +00:01:11.3398,69.6905819101921,-8.81860227739932,-25.9370655217627,-0.0466417211224607,47.9685495733764 +00:01:11.3763,69.6907309631781,-8.82554137848744,-25.9574746426101,-0.0466931128061917,47.9084093907972 +00:01:11.4128,69.6908800773476,-8.83146220271247,-25.9748888315073,-0.0467412715213644,47.8482172176852 +00:01:11.4493,69.6910291441087,-8.82288976901096,-25.9496757912087,-0.0467406890997914,47.7880008385396 +00:01:11.5000,69.6912357794119,-8.80034780427669,-25.8833758949315,-0.0467039541429734,47.7044166298036 +00:01:11.5018,69.6912433058154,-8.80145379416283,-25.8866288063613,-0.0467091323492243,47.7013698144058 +00:01:11.5036,69.6912508348673,-8.80714403916934,-25.9033648210863,-0.046729814407411,47.6983222214793 +00:01:11.5062,69.6912612035099,-8.82434970086379,-25.9539697084229,-0.046789990722593,47.6941271137294 +00:01:11.5087,69.6912715984557,-8.85199395744282,-26.0352763454201,-0.0468854986333573,47.6899250403352 +00:01:11.5113,69.6912820311479,-8.88891861293592,-26.1438782733409,-0.0470124419850789,47.6857130457178 +00:01:11.5166,69.6913042374408,-8.99010969791276,-26.4414991115081,-0.0473592751550581,47.6767727367296 +00:01:11.5253,69.6913408099839,-9.197407486778,-27.0511984905235,-0.0480687986127887,47.6621374901475 +00:01:11.5340,69.691378254646,-9.42966909693346,-27.7343208733337,-0.0488642028755034,47.6472744249438 +00:01:11.5427,69.6914166030126,-9.65423667865074,-28.3948137607375,-0.0496348453148047,47.6321749966471 +00:01:11.5514,69.6914557783499,-9.84593837675417,-28.9586422845711,-0.0502950009008757,47.6168587185413 +00:01:11.5600,69.6914956209345,-9.98863025896288,-29.3783242910673,-0.0507893182557717,47.6013667113019 +00:01:11.5711,69.691547191671,-10.0897211002761,-29.6756502949297,-0.051145068415171,47.5813891426656 +00:01:11.5822,69.6915990644204,-10.1050033298348,-29.7205980289258,-0.0512087068673841,47.5613286222565 +00:01:11.5934,69.6916508513345,-10.0518277640351,-29.5641993059857,-0.0510388969561028,47.5412859300247 +00:01:11.6045,69.691702267798,-9.95544085062185,-29.2807083841819,-0.0507215304431006,47.5213351279788 +00:01:11.6156,69.6917531602962,-9.84284798634773,-28.9495529010227,-0.0503486584552541,47.5015162303668 +00:01:11.6267,69.6918035030777,-9.73756344243119,-28.6398924777388,-0.0500004782339996,47.4818360277832 +00:01:11.6378,69.6918533723672,-9.65618618406753,-28.4005476001986,-0.049733625570659,47.4622747765525 +00:01:11.6517,69.6919155817674,-9.599610302415,-28.2341479482794,-0.0495539028086829,47.4378101165214 +00:01:11.6705,69.6919992830054,-9.59478084977544,-28.2199436758101,-0.0495552884835058,47.4048507503771 +00:01:11.6894,69.692083144217,-9.64241976941936,-28.3600581453511,-0.0497360333755367,47.3718377268851 +00:01:11.7082,69.6921674362461,-9.70256701542649,-28.5369618100779,-0.0499599541545245,47.338700297416 +00:01:11.7270,69.692252142046,-9.7435639218899,-28.657540946735,-0.0501187566938261,47.3054426912621 +00:01:11.7458,69.6923370560405,-9.7520538242846,-28.6825112478959,-0.0501664550071411,47.2721184125794 +00:01:11.7713,69.6924518055542,-9.72446411272276,-28.6013650374199,-0.0500970574307893,47.2270498611153 +00:01:11.7968,69.6925661774679,-9.68145397049731,-28.4748646191097,-0.0499745614335079,47.1820575441694 +00:01:11.8222,69.6926801492394,-9.65057725911194,-28.3840507620939,-0.0498935083619858,47.1371474900295 +00:01:11.8477,69.6927938932443,-9.64132330156557,-28.3568332398987,-0.0498866758514501,47.0922746304191 +00:01:11.8862,69.6929656690017,-9.64674011851926,-28.3727650544684,-0.0499432045095748,47.0244602781204 +00:01:11.9246,69.6931374571737,-9.64883919535451,-28.3789388098662,-0.0499885382276035,46.9565910246843 +00:01:11.9631,69.6933091216298,-9.63551866026769,-28.3397607654932,-0.0499807826488498,46.8887025349829 +00:01:12.0000,69.693473385298,-9.61542951830408,-28.2806750538355,-0.0499480207781027,46.8236569414969 +00:01:12.0020,69.6934825709668,-9.61672973308552,-28.2844992149574,-0.0499545764681928,46.8200171829077 +00:01:12.0041,69.693491760333,-9.62341092244303,-28.3041497718913,-0.0499797590228324,46.8163762978269 +00:01:12.0068,69.693503887637,-9.6422342436507,-28.3595124813256,-0.0500476390842823,46.8115733412726 +00:01:12.0095,69.693516045309,-9.67181946777986,-28.4465278464114,-0.0501528090788207,46.8067621024193 +00:01:12.0130,69.693531642089,-9.72287094549125,-28.5966792514449,-0.0503331444863356,46.8005980973368 +00:01:12.0205,69.6935657662637,-9.86865262863205,-29.0254489077413,-0.050846155417464,46.7871565152263 +00:01:12.0300,69.6936097128058,-10.0926331219157,-29.684215064458,-0.0516334808709974,46.7699481328836 +00:01:12.0395,69.6936546446668,-10.3243919925029,-30.365858801479,-0.0524493575173863,46.7524752643465 +00:01:12.0490,69.6937005229006,-10.5298200358223,-30.970058928889,-0.0531751748747085,46.734747763332 +00:01:12.0585,69.693747187703,-10.6858018546101,-31.4288289841473,-0.053730027804195,46.7168076220175 +00:01:12.0680,69.6937944026814,-10.7810498434213,-31.7089701277096,-0.054073972729363,46.6987173376089 +00:01:12.0815,69.6938615785567,-10.815462211993,-31.81018297645,-0.0542111163660778,46.6730160623482 +00:01:12.0949,69.6939286919994,-10.7565454888738,-31.6368984966876,-0.0540225534396531,46.6473233520873 +00:01:12.1084,69.6939952975567,-10.6433038216134,-31.3038347694512,-0.0536440367786605,46.6217578533051 +00:01:12.1218,69.6940611844473,-10.517251589076,-30.933092909047,-0.0532204105443508,46.5963758429302 +00:01:12.1353,69.6941263691095,-10.4118839491529,-30.6231880857439,-0.052868641325348,46.5711731145646 +00:01:12.1487,69.6941910303631,-10.3465353284149,-30.4309862600438,-0.0526563353982046,46.5461021884043 +00:01:12.1652,69.6942696271102,-10.3248918083934,-30.3673288482158,-0.0526000440864641,46.5155792605413 +00:01:12.1816,69.694348228118,-10.3513518178942,-30.4451524055713,-0.0527119675027635,46.4850439255402 +00:01:12.1980,69.6944270914813,-10.3998954009467,-30.5879276498431,-0.0529014473649886,46.4544272468702 +00:01:12.2144,69.6945062917015,-10.4450948868236,-30.720867314187,-0.0530795869534069,46.4237091727879 +00:01:12.2308,69.6945857495234,-10.4704043393983,-30.7953068805833,-0.0531883024095276,46.3929107196495 +00:01:12.2520,69.6946883902042,-10.4682854215745,-30.7890747693368,-0.0532067651664508,46.3531213620588 +00:01:12.2779,69.694813822606,-10.4331483902373,-30.6857305595214,-0.0531150357210667,46.3044441349479 +00:01:12.3039,69.6949388355551,-10.3917722030106,-30.5640358912077,-0.0530011360103466,46.2558504167116 +00:01:12.3298,69.6950634767478,-10.3665291514705,-30.489791621972,-0.0529437898948273,46.2073275540735 +00:01:12.3557,69.6951879343403,-10.3610226967335,-30.4735961668631,-0.052955909043199,46.1588251086201 +00:01:12.3919,69.6953614843474,-10.3644966615163,-30.4838137103421,-0.053012307672557,46.0911386856403 +00:01:12.4281,69.695534994805,-10.3610719325101,-30.4737409779709,-0.0530445636409646,46.0234063828654 +00:01:12.4643,69.6957083279481,-10.344578535093,-30.4252309855677,-0.053030683356991,45.955665215632 +00:01:12.5000,69.695879106112,-10.3234451166988,-30.3630738726435,-0.0529997507124899,45.888831453528 +00:01:12.5023,69.6958901638838,-10.325081203503,-30.3678858926558,-0.0530084071109557,45.8845010020548 +00:01:12.5046,69.6959012267846,-10.3330386910088,-30.391290267673,-0.0530394958322528,45.8801689288701 +00:01:12.5075,69.6959152075366,-10.3537564119424,-30.452224741007,-0.0531166298766731,45.874696338332 +00:01:12.5104,69.6959292235953,-10.3855141741393,-30.5456299239393,-0.0532329875474066,45.8692138149608 +00:01:12.5144,69.6959484564679,-10.443499216917,-30.7161741674028,-0.0534438860354846,45.8617001511886 +00:01:12.5233,69.6959916844033,-10.6107996487049,-31.2082342608966,-0.0540497725917091,45.8448666515531 +00:01:12.5321,69.696035652321,-10.8078409674482,-31.7877675513182,-0.0547625849074682,45.8278287871561 +00:01:12.5410,69.6960804131474,-11.0039711744132,-32.3646211012153,-0.0554734850661581,45.8105718274755 +00:01:12.5499,69.6961259174553,-11.1749309061414,-32.8674438415924,-0.0560958932795536,45.7931088295801 +00:01:12.5602,69.69617945885,-11.3205293561124,-33.2956745768012,-0.0566309235904006,45.7726391511295 +00:01:12.5727,69.6962452266193,-11.4100611175067,-33.5590032867844,-0.0569698008124908,45.7475602521132 +00:01:12.5852,69.6963112593605,-11.4103803309912,-33.559942149974,-0.0569899969926922,45.7224007792191 +00:01:12.5977,69.6963771155966,-11.3435441607851,-33.3633651787798,-0.0567697893647896,45.697281119072 +00:01:12.6102,69.6964424986575,-11.2403944925658,-33.0599838016641,-0.0564192956283003,45.6722823271072 +00:01:12.6227,69.6965072855253,-11.1318255948232,-32.7406635141858,-0.0560490377652508,45.6474381312031 +00:01:12.6352,69.6965715094203,-11.0419807171169,-32.4764138738732,-0.0557454707110279,45.6227396122043 +00:01:12.6477,69.6966353121843,-10.9846354310385,-32.3077512677603,-0.0555580104560818,45.5981481616318 +00:01:12.6651,69.6967238629796,-10.9611112426273,-32.2385624783154,-0.0554985530306413,45.5639706491495 +00:01:12.6826,69.6968124052398,-10.9859471870616,-32.3116093737105,-0.0556125295303774,45.5297801143098 +00:01:12.7000,69.696901205495,-11.0314461431672,-32.4454298328446,-0.0558009906428369,45.495503533699 +00:01:12.7174,69.6969903283989,-11.0712863408687,-32.5626068849079,-0.0559695382167249,45.4611230127127 +00:01:12.7348,69.6970796751155,-11.0895303517201,-32.6162657403531,-0.056060738720323,45.4266654592394 +00:01:12.7580,69.6971985903064,-11.0784139626943,-32.5835704785128,-0.0560548696689557,45.3807828124382 +00:01:12.7812,69.6973172790029,-11.0436662353513,-32.4813712804449,-0.0559637688845233,45.3349345078591 +00:01:12.8044,69.6974356143468,-11.0075254571236,-32.375074873893,-0.0558674268585134,45.2891555089912 +00:01:12.8276,69.6975536491416,-10.9847716632617,-32.3081519507698,-0.0558192367011022,45.2434314006515 +00:01:12.8591,69.6977140680839,-10.9759222276245,-32.2821241988956,-0.05583353616373,45.1812193408828 +00:01:12.8978,69.6979106046723,-10.9753724193074,-32.28050711561,-0.0558885360082762,45.1049176877773 +00:01:12.9365,69.6981070109823,-10.9661149754379,-32.2532793395231,-0.0559122066265355,45.0285740356484 +00:01:12.9751,69.6983031382227,-10.9448074168524,-32.1906100495659,-0.0558921867889974,44.9522294343661 +00:01:13.0000,69.6984288293707,-10.9284373551218,-32.1424628091819,-0.0558695124890067,44.9032390760339 +00:01:13.0030,69.6984442352206,-10.9317412041919,-32.1521800123291,-0.0558860765913884,44.8972312538801 +00:01:13.0060,69.6984596532905,-10.9452270865361,-32.1918443721649,-0.0559397441613165,44.8912195479428 +00:01:13.0091,69.6984750983745,-10.9700803369491,-32.2649421674975,-0.0560348610800683,44.8851998444589 +00:01:13.0121,69.6984905853925,-11.0051416318849,-32.368063623191,-0.0561672366447217,44.8791679914485 +00:01:13.0173,69.6985171624684,-11.0827443390439,-32.5963068795409,-0.0564581230814035,44.8688310388656 +00:01:13.0270,69.6985672556832,-11.2621567041762,-33.1239903064005,-0.0571280625043694,44.8494084758128 +00:01:13.0367,69.6986181808404,-11.4592955011292,-33.7038102974388,-0.0578641949650059,44.8297488419467 +00:01:13.0464,69.6986699406852,-11.6416632221395,-34.2401859474691,-0.0585477898679712,44.8098509091187 +00:01:13.0560,69.6987224223821,-11.7858342311553,-34.6642183269274,-0.0590927336903192,44.7897457452455 +00:01:13.0657,69.6987754320288,-11.8789823599519,-34.9381834116232,-0.0594514386415147,44.769487211756 +00:01:13.0798,69.698853122152,-11.9220277900843,-35.0647876178951,-0.0596346375649954,44.7398283613777 +00:01:13.0940,69.6989308129577,-11.8756645227954,-34.9284250670452,-0.0594895069765489,44.7101568518899 +00:01:13.1081,69.6990080539452,-11.7758673551,-34.6349039855884,-0.0591476623912636,44.6805989716276 +00:01:13.1222,69.6990846251328,-11.6624000227759,-34.3011765375761,-0.0587550845764475,44.6512165716347 +00:01:13.1363,69.6991605348934,-11.5676339691331,-34.0224528503915,-0.0584307973525221,44.6220075264117 +00:01:13.1504,69.6992359547403,-11.5099388972559,-33.8527614625173,-0.0582424912279858,44.5929239231816 +00:01:13.1685,69.6993325032561,-11.4924421681694,-33.8013004946159,-0.0582087011640354,44.5556436863436 +00:01:13.1867,69.6994290743849,-11.5195425743895,-33.8810075717338,-0.058339278181766,44.5183374026719 +00:01:13.2048,69.6995259112956,-11.5623615819449,-34.0069458292496,-0.0585282104998665,44.4809365864412 +00:01:13.2229,69.6996230449121,-11.5953517760473,-34.1039758119039,-0.0586813104647069,44.4434323159644 +00:01:13.2410,69.6997203490582,-11.6050366594417,-34.1324607630637,-0.0587485920374316,44.4058599345019 +00:01:13.2669,69.6998590940757,-11.5832121033714,-34.0682708922687,-0.058712852218162,44.3522418380738 +00:01:13.2927,69.6999974940203,-11.5425016793083,-33.9485343509067,-0.0586069916811055,44.2986801904965 +00:01:13.3186,69.7001354757714,-11.5078003177281,-33.8464715227297,-0.0585231415555739,44.245195793371 +00:01:13.3445,69.7002731588253,-11.4905214663645,-33.7956513716603,-0.0585038195100559,44.1917549633178 +00:01:13.3833,69.700479928494,-11.4839519690971,-33.776329320874,-0.0585470044854335,44.1113993521712 +00:01:13.4222,69.7006865361775,-11.4776546856712,-33.7578078990329,-0.0585914821043174,44.0309966347379 +00:01:13.4611,69.7008928938793,-11.4590129394102,-33.7029792335593,-0.0585900765049609,43.9505716469864 +00:01:13.5000,69.7010989253142,-11.4329306130502,-33.6262665089713,-0.0585608737808528,43.8701392468127 +00:01:13.5028,69.7011142031938,-11.4350441578877,-33.6324828173167,-0.0585738720794201,43.8641697573071 +00:01:13.5057,69.7011294895089,-11.4454287498514,-33.6630257348571,-0.058617863754649,43.8581973380447 +00:01:13.5086,69.7011447958955,-11.4651790673027,-33.7211149038313,-0.0586969724245301,43.8522186622568 +00:01:13.5115,69.7011601341428,-11.4934565052375,-33.8042838389337,-0.0588080833243681,43.84623035657 +00:01:13.5166,69.7011875913738,-11.5599746450312,-33.9999254265624,-0.0590667223978859,43.8355213463961 +00:01:13.5268,69.7012426105092,-11.72752225881,-34.4927125259118,-0.0597142534871689,43.8141160284945 +00:01:13.5370,69.701298453211,-11.9139635981967,-35.0410694064608,-0.0604342718604442,43.7924678784858 +00:01:13.5472,69.7013551229886,-12.0851498508191,-35.5445583847621,-0.0610984808147124,43.7705753784267 +00:01:13.5574,69.7014124974471,-12.2169382988953,-35.932171467339,-0.0616155857436975,43.748473192993 +00:01:13.5677,69.701470368033,-12.2968563526317,-36.1672245665637,-0.0619379313689005,43.7262209115738 +00:01:13.5828,69.7015567384956,-12.3218789960758,-36.2408205766935,-0.0620637387149201,43.6930282010087 +00:01:13.5980,69.701642997559,-12.2605822134335,-36.0605359218634,-0.0618633993630338,43.65985091792 +00:01:13.6132,69.7017287027738,-12.1545312353191,-35.7486212803502,-0.0614934147656439,43.6268166949133 +00:01:13.6283,69.7018136853091,-12.0460943772092,-35.4296893447331,-0.0611138201017087,43.5939744662894 +00:01:13.6435,69.7018980246545,-11.9660570058559,-35.194285311341,-0.0608411227810666,43.5613015776212 +00:01:13.6587,69.7019819531999,-11.9277339381531,-35.0815704063326,-0.0607259475304532,43.5287311784458 +00:01:13.6806,69.7021030173427,-11.9329457976877,-35.0968994049639,-0.0607888878447304,43.481706683758 +00:01:13.7025,69.7022242786738,-11.9740677906646,-35.2178464431313,-0.0609884120106663,43.4345915136489 +00:01:13.7244,69.7023458888188,-12.0106283632001,-35.3253775388238,-0.0611712542970456,43.3873414692778 +00:01:13.7463,69.7024677057761,-12.0191942202338,-35.3505712359817,-0.0612480989780201,43.3399973850062 +00:01:13.7726,69.7026138046292,-11.993871499788,-35.2760926464352,-0.0612048923813256,43.2831603969477 +00:01:13.7989,69.7027595282349,-11.9522409029054,-35.1536497144277,-0.061099302088095,43.2263831754329 +00:01:13.8252,69.7029048215488,-11.9178803307191,-35.0525892079974,-0.0610211769041947,43.1696818840206 +00:01:13.8515,69.7030498112633,-11.9006311507222,-35.0018563256535,-0.0610083185252774,43.1130197447204 +00:01:13.8934,69.7032809633998,-11.8908683587297,-34.9731422315579,-0.0610559648297957,43.0225572397123 +00:01:13.9354,69.7035118530969,-11.8790029160936,-34.9382438708637,-0.0610958775797236,42.9320450994218 +00:01:13.9773,69.7037423637495,-11.8542858110248,-34.8655465030141,-0.06108655455296,42.8415172657956 +00:01:14.0000,69.7038663070688,-11.8370422144214,-34.8148300424158,-0.0610663790090788,42.7927683055625 +00:01:14.0037,69.7038867463805,-11.840889346945,-34.8261451380734,-0.0610888691879697,42.7847246933784 +00:01:14.0074,69.7039072036825,-11.857137920142,-34.8739350592412,-0.0611592381473821,42.7766747763225 +00:01:14.0111,69.7039277002679,-11.8865204365981,-34.9603542252885,-0.0612803619884769,42.7686122802729 +00:01:14.0149,69.7039482566718,-11.9270461823792,-35.0795475952328,-0.0614446120024423,42.7605311474522 +00:01:14.0219,69.703987485396,-12.023984532897,-35.3646603908737,-0.0618340960373675,42.7451293088568 +00:01:14.0330,69.7040497095035,-12.200031014734,-35.8824441609823,-0.062539133274517,42.7207601513813 +00:01:14.0441,69.7041128133182,-12.3734231549069,-36.392421043844,-0.0632356658100511,42.6961216294333 +00:01:14.0552,69.7041767031236,-12.5126339173605,-36.8018644628251,-0.0638012077462156,42.6712408499663 +00:01:14.0663,69.7042411659498,-12.5995973925468,-37.0576393898435,-0.0641649346321665,42.6461803730065 +00:01:14.0810,69.704326978221,-12.6303146723765,-37.1479843305191,-0.0643190632281482,42.6128391626209 +00:01:14.0957,69.704412748966,-12.5836003189225,-37.0105891733015,-0.0641719244166212,42.5794923657657 +00:01:14.1104,69.7044980778793,-12.492745440995,-36.7433689441029,-0.0638524918885919,42.5462588985469 +00:01:14.1251,69.7045827859175,-12.3938039113413,-36.4523644451215,-0.0635009885764728,42.5131921708575 +00:01:14.1398,69.7046669052934,-12.3148665966254,-36.2201958724277,-0.0632269048788074,42.480282874806 +00:01:14.1545,69.7047506103407,-12.2702854870788,-36.0890749619965,-0.0630863926253989,42.4474793992946 +00:01:14.1754,69.7048693482411,-12.2616347264267,-36.0636315483139,-0.0630999797513502,42.4008946832764 +00:01:14.1963,69.704988159666,-12.2909096068946,-36.1497341379253,-0.0632620046101795,42.3542529176575 +00:01:14.2172,69.7051072378241,-12.3243179550301,-36.2479939853827,-0.0634407764200168,42.3074962434913 +00:01:14.2381,69.705226522127,-12.3381210223394,-36.2885912421748,-0.0635432403216785,42.260642444656 +00:01:14.2633,69.7053702688204,-12.3220992928093,-36.2414685082628,-0.0635388727624676,42.2041302240955 +00:01:14.2953,69.7055523468012,-12.277015761717,-36.1088698874028,-0.0634359594598233,42.132432663873 +00:01:14.3273,69.7057338359955,-12.2354143982382,-35.9865129359948,-0.0633463672150304,42.0608279750514 +00:01:14.3593,69.705914877812,-12.2132615296817,-35.9213574402403,-0.0633332394083533,41.9892738634427 +00:01:14.4031,69.7061625164704,-12.1995451320574,-35.8810150942865,-0.0633811152571444,41.8912269888798 +00:01:14.4469,69.7064097850898,-12.1821010856798,-35.8297090755289,-0.0634145931777533,41.7931334043795 +00:01:14.4907,69.7066565606908,-12.1528221426871,-35.743594537315,-0.0634012725120348,41.6950300592885 +00:01:14.5000,69.7067085113127,-12.1452077132628,-35.7211991566552,-0.0633927274684642,41.6743504539301 +00:01:14.5038,69.7067303069734,-12.1485765306133,-35.7311074429802,-0.06341527263299,41.6656720444768 +00:01:14.5077,69.7067521201573,-12.1638498817663,-35.7760290640186,-0.0634852426076571,41.6569870603065 +00:01:14.5116,69.7067739718735,-12.1916037116384,-35.8576579754072,-0.0636049837634048,41.6482891132551 +00:01:14.5155,69.7067958822417,-12.22981730255,-35.9700508898529,-0.0637665061742676,41.6395720778756 +00:01:14.5232,69.7068397477891,-12.3253481879412,-36.2510240821801,-0.0641660857707747,41.6221392274841 +00:01:14.5350,69.706907477196,-12.4914883303692,-36.7396715599095,-0.0648585924833002,41.595278962787 +00:01:14.5467,69.7069760705507,-12.6491455820432,-37.2033693589506,-0.0655190676308711,41.5681430286141 +00:01:14.5585,69.7070454005205,-12.7677242773816,-37.5521302275929,-0.0660246924858508,41.5407696248867 +00:01:14.5703,69.7071152221509,-12.8317818436915,-37.7405348343867,-0.0663127812229657,41.5132330953303 +00:01:14.5868,69.7072133623,-12.8337827278105,-37.7464197876778,-0.0663649118276043,41.4745259657204 +00:01:14.6034,69.7073112600819,-12.7626842962021,-37.5373067535355,-0.0661232393305417,41.4358674911309 +00:01:14.6199,69.7074085377097,-12.6618972287369,-37.2408742021674,-0.0657615934670054,41.3973736395873 +00:01:14.6364,69.7075051135019,-12.5713048501604,-36.9744260298836,-0.0654402266455969,41.3590698041757 +00:01:14.6530,69.7076011424376,-12.5151295132374,-36.8092044506983,-0.0652567900150077,41.3209087697022 +00:01:14.6728,69.7077161865841,-12.4978879806506,-36.7584940607369,-0.0652384696537307,41.275128892933 +00:01:14.6927,69.7078312204433,-12.5172641696885,-36.8154828520248,-0.0653679679690741,41.2293161489335 +00:01:14.7126,69.7079464471376,-12.5460408878982,-36.9001202585242,-0.0655359286424787,41.1834078388717 +00:01:14.7324,69.7080618598456,-12.562094987642,-36.947338198947,-0.0656529552616655,41.1374057834021 +00:01:14.7571,69.7082050963573,-12.5527708694634,-36.9199143219512,-0.0656801097318954,41.0802646314991 +00:01:14.7934,69.7084160676763,-12.506639696368,-36.7842344010823,-0.0655888533885206,40.9959563503026 +00:01:14.8298,69.708626315949,-12.458808915271,-36.6435556331501,-0.0654902474531797,40.9117489972112 +00:01:14.8662,69.7088359690076,-12.4311560711109,-36.5622237385616,-0.0654735443007347,40.8276031264801 +00:01:14.9113,69.7090955330493,-12.4132596419202,-36.5095871821182,-0.0655199629491876,40.7232094130877 +00:01:14.9565,69.7093546286936,-12.3915138732966,-36.4456290391076,-0.0655510152002836,40.6187708276914 +00:01:15.0000,69.709603808845,-12.359979163707,-36.3528798932558,-0.0655377269201598,40.5180977401561 +00:01:15.0041,69.7096275278945,-12.3632005326377,-36.3623545077578,-0.0655620838440168,40.5085034519013 +00:01:15.0082,69.7096512651944,-12.3783270395032,-36.406844233833,-0.0656354670746677,40.4989018052962 +00:01:15.0124,69.7096750430861,-12.4057208097202,-36.4874141462358,-0.0657594284945887,40.4892857781399 +00:01:15.0165,69.7096988825542,-12.4431658182244,-36.5975465241893,-0.0659249104544593,40.479648764824 +00:01:15.0252,69.7097491166636,-12.5403487195871,-36.8833785870208,-0.0663493866243622,40.4593612493086 +00:01:15.0378,69.7098226680855,-12.6955268781106,-37.3397849356193,-0.0670253560718229,40.4297088687137 +00:01:15.0504,69.7098970539408,-12.8341137453358,-37.7473933686347,-0.0676347114630862,40.3997775708712 +00:01:15.0630,69.7099721004191,-12.92789422713,-38.0232183150882,-0.0680601246447719,40.3696214950272 +00:01:15.0756,69.7100475258689,-12.9656704859029,-38.1343249585379,-0.0682542608917645,40.3393291342757 +00:01:15.0929,69.7101514524193,-12.9391442371957,-38.0563065799873,-0.0681959836626412,40.2975648097772 +00:01:15.1103,69.7102549682921,-12.8562559279054,-37.8125174350159,-0.0679031915404996,40.255899020847 +00:01:15.1276,69.7103578077506,-12.7609822868889,-37.5323008437909,-0.0675581521000166,40.2144162793624 +00:01:15.1449,69.7104599972429,-12.6877414828616,-37.3168867142988,-0.0673040100293062,40.1731086002085 +00:01:15.1623,69.7105617574218,-12.6520431342906,-37.2118915714429,-0.0672056656858986,40.1319062870689 +00:01:15.1865,69.7107036604359,-12.6529342762394,-37.2145125771748,-0.0672797061640995,40.0743830235945 +00:01:15.2107,69.7108456739158,-12.6790647827719,-37.2913670081526,-0.0674596347452745,40.0167641207496 +00:01:15.2349,69.7109878358577,-12.6884952539531,-37.3191036880973,-0.0675704130741203,39.9590371143162 +00:01:15.2591,69.7111297431233,-12.6585907663927,-37.2311493129196,-0.0675166103416269,39.9012999883626 +00:01:15.2834,69.7112712762401,-12.6252154676087,-37.1329866694372,-0.0674480395396554,39.8436215010314 +00:01:15.3131,69.711444462911,-12.5922672071706,-37.03608002109,-0.067397264067787,39.7729119532746 +00:01:15.3581,69.7117065843354,-12.554482774298,-36.9249493361705,-0.0673713597039465,39.665712722642 +00:01:15.4132,69.7120265839992,-12.519567480149,-36.822257294556,-0.0673875962299641,39.5345083158749 +00:01:15.4804,69.712414852856,-12.4757541056442,-36.6933944283654,-0.0674022016481541,39.3747858120648 +00:01:15.5000,69.712527970379,-12.461691394457,-36.652033513109,-0.0674011440718871,39.3281412756224 +00:01:15.5044,69.712553730396,-12.4652748546103,-36.662573101795,-0.067429822491906,39.3175124533809 +00:01:15.5089,69.7125795111737,-12.4808106303657,-36.7082665598992,-0.0675094680392515,39.3068747443021 +00:01:15.5133,69.7126053362441,-12.5082977891074,-36.7891111444336,-0.0676401485529834,39.2962205025034 +00:01:15.5178,69.7126312271567,-12.5452097187615,-36.8976756434162,-0.0678111676068312,39.2855427058615 +00:01:15.5277,69.7126887148603,-12.6432284335646,-37.1859659810724,-0.0682599837027227,39.2618534979323 +00:01:15.5411,69.7127676726858,-12.7823831986039,-37.5952447017761,-0.0688971769222461,39.2293624831632 +00:01:15.5545,69.7128473912974,-12.8955445189532,-37.9280721145682,-0.0694250342749479,39.1966029106808 +00:01:15.5679,69.7129276455332,-12.9593950310817,-38.1158677384757,-0.0697428284264235,39.1636476593847 +00:01:15.5844,69.7130263424973,-12.9660717810494,-38.1355052383805,-0.0698258255918202,39.1231115891257 +00:01:15.6008,69.713124882913,-12.9138739298799,-37.9819821467055,-0.06965571478347,39.0825953895618 +00:01:15.6173,69.7132229531112,-12.8352443716495,-37.7507187401455,-0.0693713327761682,39.0422020632938 +00:01:15.6337,69.7133204663309,-12.7614036704653,-37.5335402072508,-0.0691068768593996,39.0019603987599 +00:01:15.6502,69.7134175231029,-12.7121844652906,-37.38877783909,-0.0689479395059538,38.9618376970417 +00:01:15.6714,69.7135422855495,-12.690499331774,-37.3249980346293,-0.0689228045119058,38.9101879018937 +00:01:15.6926,69.7136669706781,-12.6999891506807,-37.352909266708,-0.0690324604582346,38.8585121287002 +00:01:15.7138,69.713791757491,-12.7167136540116,-37.4020989823871,-0.069173928309828,38.8067511750187 +00:01:15.7350,69.7139166331324,-12.7218489499798,-37.4172027940583,-0.0692656920122378,38.7549089885875 +00:01:15.7629,69.714080476217,-12.7028874542005,-37.361433688825,-0.0692749602824105,38.6868014373242 +00:01:15.8018,69.714309085687,-12.6546007982514,-37.219414112504,-0.0691931727540081,38.5915697516557 +00:01:15.8408,69.7145369225143,-12.6104690004758,-37.0896147072817,-0.0691290990846159,38.4964183103461 +00:01:15.8797,69.7147641347284,-12.5826779593401,-37.0078763510004,-0.0691363238552416,38.4012979425271 +00:01:15.9385,69.715106159435,-12.5486014959631,-36.9076514587149,-0.0691821386456158,38.2577028663447 +00:01:16.0000,69.7154623771651,-12.5045145584098,-36.7779839953231,-0.0691932486019273,38.1076151980255 +00:01:16.0051,69.7154923556437,-12.5084660421201,-36.7896060062357,-0.0692280916298032,38.0949600519032 +00:01:16.0103,69.715522361125,-12.5258483356641,-36.8407303990119,-0.0693223634860867,38.0822926149265 +00:01:16.0155,69.7155524233002,-12.5560423641931,-36.9295363652738,-0.069473428413492,38.0696028556504 +00:01:16.0207,69.7155825680947,-12.595657938742,-37.0460527610059,-0.0696663899018485,38.056881995545 +00:01:16.0327,69.7156529329302,-12.7002722471005,-37.3537419032366,-0.0701713821613865,38.0272102159512 +00:01:16.0473,69.7157393168036,-12.82091438481,-37.7085717200294,-0.0707583864395842,37.990821601897 +00:01:16.0619,69.7158263641518,-12.9031688485167,-37.9504966132844,-0.0711766561784947,37.9541813387747 +00:01:16.0765,69.7159137768476,-12.9315484904217,-38.0339661482991,-0.0713561933462386,37.9173898834327 +00:01:16.0966,69.7160333680184,-12.8970772235092,-37.9325800691446,-0.0712754832759014,37.8670061336659 +00:01:16.1166,69.7161524658583,-12.8169372560586,-37.6968742825252,-0.0709904029407649,37.8167389527961 +00:01:16.1366,69.7162708668106,-12.7366996268171,-37.4608812553443,-0.0707039442874048,37.7666580755171 +00:01:16.1566,69.7163886860758,-12.6858730198626,-37.31139123489,-0.0705482383505291,37.7167247282938 +00:01:16.1766,69.7165061976458,-12.6703071085534,-37.265609142804,-0.0705501147430438,37.666845719958 +00:01:16.2027,69.7166590806793,-12.6789275372679,-37.2909633449055,-0.0706823992022156,37.6018726851788 +00:01:16.2287,69.7168120361753,-12.6893708566232,-37.3216789900683,-0.0708236200533072,37.536788338079 +00:01:16.2548,69.7169649760083,-12.6806723934556,-37.2960952748693,-0.0708792278496661,37.4716224754353 +00:01:16.2877,69.7171578429732,-12.6446230807825,-37.1900678846544,-0.0708365583045466,37.3892908690339 +00:01:16.3206,69.717350140948,-12.6012831586181,-37.0625975253472,-0.0707606419888384,37.3070159465495 +00:01:16.3535,69.7175418814864,-12.5675874676297,-36.9634925518521,-0.0707281659845411,37.2247938634174 +00:01:16.3980,69.7178007899095,-12.53718069142,-36.8740608571178,-0.0707533608142461,37.1134919978823 +00:01:16.4560,69.7181366333088,-12.4986082081093,-36.7606123767919,-0.0707911598462933,36.9686508133465 +00:01:16.5000,69.7183907046882,-12.4630163023286,-36.6559303009665,-0.0707912181542695,36.858718936889 +00:01:16.5058,69.718424282721,-12.4667015696037,-36.6667693223638,-0.0708298025954263,36.844168209977 +00:01:16.5116,69.7184578911874,-12.484554762268,-36.7192787125529,-0.0709335625552399,36.8296023556337 +00:01:16.5174,69.718491564464,-12.5152892746759,-36.8096743372821,-0.0710967141847374,36.8150092961285 +00:01:16.5245,69.7185325289874,-12.563559812551,-36.9516465075028,-0.071345523746881,36.7972609613416 +00:01:16.5378,69.7186102153613,-12.6614740818094,-37.2396296523806,-0.0718477237377407,36.7636210393637 +00:01:16.5511,69.7186884516636,-12.7471015125092,-37.4914750367919,-0.0722949040368856,36.729763461468 +00:01:16.5644,69.7187671028981,-12.8002495800736,-37.6477928825694,-0.0725932962405546,36.6957351476499 +00:01:16.5814,69.7188680616265,-12.8122839282995,-37.6831880244102,-0.0727170716451592,36.6520382072795 +00:01:16.5984,69.7189689285716,-12.7743191324617,-37.5715268601815,-0.0726092658385056,36.6083328474094 +00:01:16.6155,69.7190694194089,-12.7111301648806,-37.3856769555311,-0.072383950566558,36.5647196826189 +00:01:16.6325,69.7191694351026,-12.6485250271236,-37.2015441974222,-0.0721606637211702,36.5212340625513 +00:01:16.6496,69.7192690396518,-12.6038992976328,-37.0702920518613,-0.0720203723307044,36.477853639701 +00:01:16.6724,69.7194022071113,-12.5786505392875,-36.9960309979043,-0.0719928172802639,36.4197637593706 +00:01:16.7014,69.7195713610724,-12.5788906553865,-36.996737221725,-0.0721088405574804,36.3458567724323 +00:01:16.7305,69.7197404904933,-12.5823911835882,-37.0070328929064,-0.0722408993611953,36.2718401754723 +00:01:16.7595,69.719909510532,-12.5672509071848,-36.9625026681907,-0.0722862630477211,36.1977437516278 +00:01:16.7955,69.7201186987966,-12.5262621820148,-36.8419475941612,-0.0722383745245123,36.1058342929785 +00:01:16.8315,69.7203272110893,-12.481406188595,-36.71001820175,-0.0721719727944499,36.0139833564062 +00:01:16.8676,69.720535089436,-12.4469502820748,-36.60867730022,-0.0721544400179141,35.9221759515979 +00:01:16.9190,69.7208308516103,-12.4097098862524,-36.4991467242719,-0.0721860797472531,35.7911662258734 +00:01:16.9820,69.7211920214776,-12.3611475725422,-36.3563163898299,-0.072211579411787,35.6305618173778 +00:01:17.0000,69.7212949506196,-12.3454733121697,-36.3102156240285,-0.0722103761860035,35.5846646120394 +00:01:17.0074,69.7213373251382,-12.3508181944648,-36.3259358660729,-0.0722663545156017,35.5657547362752 +00:01:17.0148,69.7213797506115,-12.3739430579897,-36.3939501705578,-0.0724075820600936,35.5468182758176 +00:01:17.0222,69.721422278301,-12.411340453537,-36.503942510403,-0.0726174858694319,35.5278364463394 +00:01:17.0296,69.7214649446031,-12.4563181994363,-36.6362299983422,-0.0728641718140284,35.5087958487564 +00:01:17.0432,69.7215438007538,-12.5359038254061,-36.8703053688415,-0.0733040874150841,35.4736146215775 +00:01:17.0599,69.7216406436852,-12.6042371591111,-37.0712857620914,-0.0737044689387293,35.4304142042715 +00:01:17.0765,69.7217378204632,-12.6259387212207,-37.1351138859433,-0.0738815089852347,35.3870489379661 +00:01:17.0984,69.7218656773084,-12.5922532385476,-37.0360389369047,-0.0738146161664454,35.3299214745167 +00:01:17.1203,69.7219930449964,-12.5222704817614,-36.8302072992983,-0.0735717111122681,35.2729004964425 +00:01:17.1423,69.7221197627075,-12.4554985632977,-36.6338193038167,-0.0733433541548001,35.2160457746687 +00:01:17.1642,69.7222459593323,-12.4152481765225,-36.5154358133013,-0.073242798734725,35.1593102254067 +00:01:17.1907,69.7223981259674,-12.4010929407059,-36.473802766782,-0.0732885272457072,35.0907751723571 +00:01:17.2171,69.7225501842452,-12.4027249634339,-36.4786028336291,-0.0734115773328898,35.0221728016006 +00:01:17.2436,69.7227021880276,-12.3973404731261,-36.4627660974298,-0.0735010965947014,34.953482715841 +00:01:17.2759,69.7228872249882,-12.3698124602992,-36.3818013538212,-0.0735082053149841,34.8696973175505 +00:01:17.3251,69.7231683716045,-12.3110365142904,-36.2089309243834,-0.073436518364934,34.7420046460546 +00:01:17.3743,69.7234483211039,-12.2585700804968,-36.054617883814,-0.0733954696593659,34.6143837407691 +00:01:17.4236,69.7237272347537,-12.2186398067049,-35.9371759020733,-0.0734164014688747,34.4867738629808 +00:01:17.5000,69.7241582878481,-12.1560346651368,-35.7530431327554,-0.0734465409402224,34.2886541120368 +00:01:17.5079,69.7242031390815,-12.1608390684832,-35.7671737308329,-0.0735063478355381,34.2679781792123 +00:01:17.5159,69.7242480401848,-12.1816445008448,-35.8283661789552,-0.0736462648654647,34.2472731374481 +00:01:17.5239,69.7242930389945,-12.2146444708919,-35.9254249143879,-0.0738474959305286,34.2265206755054 +00:01:17.5337,69.7243489669003,-12.2619533402588,-36.0645686478201,-0.0741296061614696,34.2007281357759 +00:01:17.5493,69.7244373478233,-12.3269322933248,-36.2556832156612,-0.0745275593413483,34.159967852105 +00:01:17.5648,69.7245260843903,-12.3648339343635,-36.3671586304809,-0.0747909886677141,34.1190316594657 +00:01:17.5841,69.7246363726288,-12.3644537388437,-36.3660404083638,-0.0748803765734026,34.0681089038205 +00:01:17.6074,69.724769756762,-12.3147511002141,-36.2198561771004,-0.0747405737804585,34.0064180118399 +00:01:17.6308,69.7249025504303,-12.2472710961876,-36.0213855770222,-0.0745101793743658,33.9448633269982 +00:01:17.6541,69.725034730823,-12.194461202321,-35.8660623597676,-0.0743530069854858,33.8834541871308 +00:01:17.6775,69.7251664941355,-12.1683391844326,-35.7892328953901,-0.0743305389194496,33.8221153195652 +00:01:17.7123,69.7253627608477,-12.1566595205162,-35.7548809426946,-0.0744358937396855,33.7305557655035 +00:01:17.7472,69.7255587830004,-12.1453115385875,-35.7215045252575,-0.074543882357082,33.6388876037387 +00:01:17.7820,69.7257544409469,-12.1156164629514,-35.634166067504,-0.0745587858100959,33.5471567800231 +00:01:17.8269,69.7260058068457,-12.0621126264272,-35.4768018424328,-0.0744999467150956,33.428938290724 +00:01:17.8719,69.7262561468936,-12.0121196771468,-35.3297637563141,-0.0744588132491706,33.3107795054846 +00:01:17.9266,69.7265600606175,-11.9636319388866,-35.1871527614311,-0.0744729612245823,33.1667731973696 +00:01:18.0000,69.7269651545323,-11.9003183689163,-35.0009363791656,-0.0745010402602303,32.9738666781417 +00:01:18.0094,69.7270174752643,-11.9047332156213,-35.0139212224156,-0.0745706447329923,32.9488736075941 +00:01:18.0189,69.7270698542189,-11.9255488164282,-35.0751435777299,-0.0747262183048586,32.9238416739086 +00:01:18.0284,69.7271223455974,-11.9571065470594,-35.1679604325275,-0.0749384601787422,32.8987491353809 +00:01:18.0404,69.7271884769879,-11.9988141844604,-35.2906299542953,-0.0752167230578823,32.8671292660732 +00:01:18.0576,69.7272844453944,-12.0417312740141,-35.4168566882767,-0.0755293460196473,32.821223529821 +00:01:18.0749,69.7273806208163,-12.0534725033159,-35.451389715635,-0.0756792411058024,32.775181468926 +00:01:18.0987,69.7275132242313,-12.0230243510001,-35.3618363264709,-0.0756408766559141,32.7116025190045 +00:01:18.1225,69.7276453700299,-11.9650033532793,-35.1911863331745,-0.0754564852898365,32.6481053417078 +00:01:18.1463,69.7277769315828,-11.9102006646528,-35.0300019548611,-0.0752881878354463,32.5847413738503 +00:01:18.1701,69.7279080187728,-11.8757170853499,-34.9285796627939,-0.0752268899490389,32.5214667504038 +00:01:18.2014,69.7280803053689,-11.856187612402,-34.8711400364766,-0.0752835986485529,32.4381192371222 +00:01:18.2328,69.7282523292537,-11.8444076286335,-34.8364930253927,-0.075382216377516,32.3546999798292 +00:01:18.2641,69.7284240797169,-11.822528964211,-34.7721440123852,-0.0754275596435892,32.2712128700956 +00:01:18.3049,69.7286465218499,-11.7778556589808,-34.640751938179,-0.0753996252693386,32.1627665436982 +00:01:18.3578,69.728934543101,-11.7169013903503,-34.461474677501,-0.0753476315657771,32.0217950880471 +00:01:18.4108,69.7292212189938,-11.6648917500703,-34.3085051472655,-0.0753438081210789,31.8808595821296 +00:01:18.4828,69.7296091924581,-11.5998323718736,-34.1171540349224,-0.0753699951207573,31.6891350743323 +00:01:18.5000,69.729701175995,-11.5843702677341,-34.0716772580414,-0.0753764470083824,31.6435111973374 +00:01:18.5125,69.7297686780617,-11.5885631195966,-34.0840091752842,-0.0754664103057307,31.6099932487026 +00:01:18.5251,69.7298362579635,-11.6105049007577,-34.1485438257579,-0.075654115041941,31.5764128719617 +00:01:18.5377,69.729903981019,-11.6400213587981,-34.2353569376416,-0.0758841496585554,31.5427424769834 +00:01:18.5533,69.7299884079632,-11.6695900452101,-34.3223236623827,-0.0761320956632448,31.5007407714493 +00:01:18.5736,69.7300979496644,-11.6803422841411,-34.3539478945326,-0.0763028095722649,31.4461873873055 +00:01:18.5994,69.730236996338,-11.6515718040908,-34.2693288355613,-0.0762861248837403,31.3768151817598 +00:01:18.6251,69.7303755803389,-11.5979690194817,-34.111673586711,-0.076131583491861,31.3075090379237 +00:01:18.6509,69.730513578023,-11.5470945553644,-33.9620428098953,-0.0759912909955525,31.2383215831268 +00:01:18.6766,69.7306510910185,-11.5138557616953,-33.864281652045,-0.0759484540826656,31.169210244561 +00:01:18.7117,69.7308380853567,-11.4897246869947,-33.7933079029257,-0.0760081970839209,31.0749859585623 +00:01:18.7469,69.7310246785701,-11.469185075744,-33.7328972815999,-0.0760887419618648,30.9806907712723 +00:01:18.7820,69.7312108257338,-11.4380482237792,-33.6413183052328,-0.0761104075603403,30.8863433823477 +00:01:18.8306,69.731467567476,-11.3829357703121,-33.4792228538591,-0.0760728962239038,30.7557372426593 +00:01:18.8894,69.731776609233,-11.3185450965429,-33.2898385192438,-0.0760401898363783,30.5977748019313 +00:01:18.9482,69.7320840225026,-11.2617188892768,-33.1227026155199,-0.076050621303091,30.4398260418483 +00:01:19.0000,69.7323533065541,-11.2129907756098,-32.9793846341464,-0.0760675689466433,30.3007916810961 +00:01:19.0171,69.7324421761131,-11.2154145941053,-32.9865135120743,-0.0761801211217751,30.2547744354586 +00:01:19.0342,69.7325311274383,-11.2339310492984,-33.0409736744072,-0.0763862006423211,30.2086613789351 +00:01:19.0513,69.7326202127418,-11.2526989708729,-33.0961734437438,-0.0765948051631454,30.1624290193818 +00:01:19.0730,69.7327331331914,-11.2570059659185,-33.1088410762309,-0.0767475891791139,30.1037472052842 +00:01:19.0996,69.7328718419331,-11.229959655381,-33.0292931040617,-0.0767485485587815,30.0315173875085 +00:01:19.1263,69.7330101149284,-11.1830132476058,-32.8912154341347,-0.0766334564204792,29.9593322296658 +00:01:19.1529,69.7331478447284,-11.1371803930257,-32.7564129206639,-0.0765241285276963,29.8872397502107 +00:01:19.1851,69.7333132364907,-11.0989104949469,-32.6438543969026,-0.0764909988834117,29.8004232033412 +00:01:19.2277,69.7335321999793,-11.0655853291368,-32.5458392033434,-0.0765499052106138,29.6850953578479 +00:01:19.2704,69.7337504553621,-11.0318115701979,-32.4465046182291,-0.0766069788852049,29.5697002961334 +00:01:19.3131,69.7339679217773,-10.9879294159954,-32.31743945881,-0.0766047201380589,29.4542738915416 +00:01:19.3792,69.7343029722424,-10.9144874618843,-32.1014337114243,-0.0765686487001735,29.2755296386634 +00:01:19.4453,69.7346358911028,-10.8457491451667,-31.8992621916668,-0.0765606954887549,29.0968170401234 +00:01:19.5000,69.7349098737381,-10.7921548770081,-31.7416319912004,-0.0765742740392392,28.9489045121665 +00:01:19.5370,69.7350948258165,-10.7880629755024,-31.7295969867718,-0.0767797764041431,28.8486495588135 +00:01:19.5630,69.7352251057918,-10.7899176246527,-31.7350518372137,-0.0769549592780676,28.7778444355961 +00:01:19.5891,69.7353552861812,-10.7755769767587,-31.6928734610549,-0.0770323413935041,28.7069342944129 +00:01:19.6220,69.7355187474681,-10.7344919674934,-31.5720351985101,-0.0769890387289479,28.6176459029187 +00:01:19.6582,69.7356984085103,-10.6812274036646,-31.4153747166605,-0.076892012991736,28.5191686440901 +00:01:19.6945,69.7358772872222,-10.6371623559723,-31.2857716352126,-0.0768511113118717,28.4207635870853 +00:01:19.7392,69.7360971704208,-10.5961148730786,-31.1650437443489,-0.076883248453382,28.2993236714707 +00:01:19.7972,69.7363808721501,-10.5431913436034,-31.009386304716,-0.0769275160930412,28.141859261286 +00:01:19.8551,69.7366630177856,-10.4824877563391,-30.8308463421737,-0.0769236903958029,27.9843683366743 +00:01:19.9402,69.7370740762911,-10.3906626344703,-30.5607724543244,-0.0769009752229637,27.7532841801448 +00:01:20.0000,69.7373605909415,-10.3284975448847,-30.3779339555433,-0.076899871294391,27.591044698377 +00:01:20.1000,69.7378371709908,-10.2536783161961,-30.1578774005768,-0.0770889480877457,27.3190612175463 +00:01:20.1594,69.7381183332493,-10.1955582473776,-29.9869360216988,-0.0771150120357654,27.1573228792716 +00:01:20.2188,69.7383977328331,-10.124897174045,-29.7791093354264,-0.0770593511427498,26.995612046542 +00:01:20.2782,69.7386753099446,-10.0589130372737,-29.5850383449227,-0.0770339846531987,26.83395814771 +00:01:20.3521,69.739018436456,-9.98458451095559,-29.3664250322223,-0.0770543502316631,26.632738690856 +00:01:20.4521,69.7394783014778,-9.88173390755155,-29.0639232575046,-0.0770675341748215,26.3605916427626 +00:01:20.5000,69.7396965450456,-9.83075358387694,-28.9139811290498,-0.0770621377628,26.2304209045887 +00:01:20.6000,69.7401490722192,-9.71957800249505,-28.5869941249854,-0.0770195518250386,25.9583573342763 +00:01:20.6999,69.7405966478232,-9.61445309416529,-28.2778032181332,-0.0770186727889285,25.6863416336871 +00:01:20.7999,69.7410393859127,-9.51130817538995,-27.9744358099704,-0.0770325777219384,25.4143111895341 +00:01:20.8999,69.741477272744,-9.40591249078566,-27.6644485023108,-0.0770316834979709,25.1422704814517 +00:01:21.0000,69.7419102738707,-9.29993471920942,-27.3527491741454,-0.0770274047766975,24.8702351822001 +00:01:21.1000,69.742337437656,-9.16026858385434,-26.941966423101,-0.0767765401419349,24.5987351858834 +00:01:21.1503,69.7425503476095,-9.10242789688311,-26.7718467555386,-0.0767392781804844,24.4622152361393 +00:01:21.2007,69.7427620686904,-9.05864327586425,-26.6430684584243,-0.0768056718733804,24.3256712386383 +00:01:21.2510,69.742972684372,-9.01175244975346,-26.5051542639808,-0.0768502560107719,24.1890555753964 +00:01:21.3014,69.7431820977005,-8.95680511979718,-26.3435444699917,-0.0768353716701815,24.0524223649609 +00:01:21.3873,69.7435365625492,-8.86256227914416,-26.0663596445417,-0.0768063429441572,23.8192819247996 +00:01:21.4732,69.7438873991284,-8.77270968630729,-25.8020873126685,-0.076810844321689,23.58615922504 +00:01:21.5000,69.7439957318959,-8.74553654017121,-25.7221662946212,-0.0768182298010013,23.5136876803794 +00:01:21.5265,69.7441028562711,-8.6975813156074,-25.5811215164923,-0.0766637700712925,23.4417825646892 +00:01:21.5465,69.7441832506466,-8.65249490170341,-25.4485144167747,-0.0764774087785817,23.3876516571574 +00:01:21.5665,69.7442632651312,-8.61272935433335,-25.3315569245099,-0.0763310466389536,23.33363052487 +00:01:21.5928,69.7443678771201,-8.57843195710558,-25.2306822267811,-0.0762767282077256,23.2627927832387 +00:01:21.6298,69.7445144695572,-8.55104395701989,-25.1501292853526,-0.0763626628654659,23.163150468269 +00:01:21.6667,69.7446605734281,-8.52606619189098,-25.0766652702676,-0.0764688292822048,23.0634066193631 +00:01:21.7037,69.7448061288472,-8.48993995763968,-24.9704116401167,-0.0764884094883454,22.9635961320826 +00:01:21.7504,69.7449889965199,-8.43448443971546,-24.8073071756337,-0.0764354763858303,22.8375493109884 +00:01:21.8034,69.7451954180339,-8.37425344266357,-24.6301571843046,-0.0763968234020124,22.6943772959134 +00:01:21.8565,69.7454004549296,-8.32062190441585,-24.472417365929,-0.0764109806600439,22.5512197810149 +00:01:21.9507,69.7457611741178,-8.22516052138927,-24.1916485923214,-0.0764353275325593,22.29702822887 +00:01:22.0000,69.7459483046303,-8.1733356373743,-24.0392224628656,-0.0764334179297283,22.1639561684963 +00:01:22.0160,69.7460088670697,-8.14256653196763,-23.9487250940224,-0.0763180608546129,22.1207036228587 +00:01:22.0320,69.746069155622,-8.09926972023409,-23.8213815301003,-0.0760984973179957,22.0775452884279 +00:01:22.0481,69.7461291261614,-8.05443530536992,-23.6895156040292,-0.0758649768964874,22.0345095141701 +00:01:22.0677,69.7462022046795,-8.01154202965017,-23.5633589107358,-0.0756769331307585,21.9819282896732 +00:01:22.0917,69.7462909947175,-7.98194458226963,-23.4763075949107,-0.0756350116374127,21.9178512641163 +00:01:22.1218,69.7464020276262,-7.96586433444962,-23.4290127483812,-0.0757579467041926,21.8374493303944 +00:01:22.1518,69.7465128201919,-7.95211067054741,-23.3885607957277,-0.0759019818146321,21.7569262306463 +00:01:22.1819,69.7466233198557,-7.92673935407664,-23.313939276696,-0.0759497302315127,21.67631453416 +00:01:22.2186,69.7467576576068,-7.88246092338283,-23.1837085981848,-0.0758959837907392,21.5778846602581 +00:01:22.2553,69.7468912519816,-7.83630980573004,-23.0479700168531,-0.0758256143682665,21.4795192197485 +00:01:22.2995,69.7470510231541,-7.78911407977757,-22.9091590581693,-0.0758112851157059,21.3612451202002 +00:01:22.3579,69.7472608386495,-7.73341650475525,-22.7453426610449,-0.0758502665579977,21.2048691560897 +00:01:22.4163,69.7474690864828,-7.67540812039681,-22.574729765873,-0.0758701931177606,21.0484525464351 +00:01:22.5000,69.7477647268596,-7.58717108348206,-22.3152090690649,-0.0758548663161681,20.8242589581856 +00:01:22.5122,69.7478076510415,-7.56355542077625,-22.2457512375772,-0.0757577614891563,20.7914920955686 +00:01:22.5244,69.7478504069632,-7.52821696302453,-22.141814597131,-0.0755562163043235,20.7587906139372 +00:01:22.5367,69.7478929519498,-7.48767449676453,-22.0225720493074,-0.0753075608876539,20.7261837010669 +00:01:22.5515,69.7479443122849,-7.44242280026948,-21.889478824322,-0.0750395065160203,20.6867305973786 +00:01:22.5708,69.7480104379447,-7.4007227215856,-21.7668315340753,-0.0748408552468285,20.635797493339 +00:01:22.5948,69.7480928131034,-7.37559818654396,-21.6929358427764,-0.0748322768263281,20.5721504991174 +00:01:22.6189,69.7481749926004,-7.36821581630254,-21.6712229891251,-0.0749830378156139,20.5084526987843 +00:01:22.6430,69.7482570744261,-7.36182432983569,-21.6524244995167,-0.0751443609795588,20.4446364122564 +00:01:22.6671,69.7483390183928,-7.34558576778219,-21.6046640228888,-0.0752182257210387,20.3807282839064 +00:01:22.6982,69.7484445308252,-7.31009255127876,-21.5002722096434,-0.075182737691404,20.2981271665363 +00:01:22.7293,69.7485495081231,-7.26887627502766,-21.3790478677284,-0.0750945314922625,20.2155822749502 +00:01:22.7604,69.748653938906,-7.23192058157108,-21.2703546516796,-0.0750444295557661,20.133101973462 +00:01:22.8016,69.7487915208375,-7.19206098748135,-21.1531205514157,-0.0750612600589563,20.0238848803657 +00:01:22.8598,69.7489846218688,-7.13842713140019,-20.9953739158829,-0.0751108365306889,19.8695246750741 +00:01:22.9180,69.7491761860875,-7.08006617931385,-20.8237240568054,-0.0751172878075053,19.7151265112382 +00:01:23.0000,69.7494431304983,-6.99443627043722,-20.5718713836389,-0.0750938651367983,19.4977967665151 +00:01:23.0098,69.7494748339344,-6.97610152722118,-20.5179456682976,-0.0750137729796186,19.4718116222237 +00:01:23.0196,69.7495064296183,-6.94764164433658,-20.4342401304017,-0.074836530528812,19.4458721575627 +00:01:23.0294,69.7495378835359,-6.91281526181658,-20.3318095935782,-0.0745976875883064,19.4200033770351 +00:01:23.0412,69.7495758062796,-6.86982839822595,-20.205377641841,-0.0742996388613336,19.3887513085814 +00:01:23.0580,69.7496289885462,-6.81956484966654,-20.0575436754898,-0.0739766930678279,19.3448102720633 +00:01:23.0748,69.7496818552866,-6.78713084696313,-19.9621495498916,-0.0738231422691335,19.3010062064149 +00:01:23.0982,69.7497552960417,-6.76853907151341,-19.9074678573924,-0.0738644652826589,19.2399734232203 +00:01:23.1216,69.7498286043148,-6.76576379659476,-19.8993052841022,-0.0740596797390924,19.1788549884744 +00:01:23.1450,69.7499018522328,-6.76125975830138,-19.8860581126511,-0.0742402396035856,19.1175966720792 +00:01:23.1684,69.7499749789096,-6.74520800788511,-19.838847082015,-0.0743098281546778,19.0562424835725 +00:01:23.1987,69.7500692351869,-6.70962051837579,-19.7341779952229,-0.0742552516114404,18.9768485671457 +00:01:23.2289,69.7501629765222,-6.669057153116,-19.6148739797529,-0.0741508537102778,18.8975259140547 +00:01:23.2592,69.750256201621,-6.63366527165979,-19.5107802107641,-0.0740965004482758,18.8182761070594 +00:01:23.2979,69.7503746218726,-6.59775294192071,-19.4051557115315,-0.0741189713250041,18.7170879545025 +00:01:23.3499,69.7505329013525,-6.55210374851654,-19.2708933779898,-0.0741768005500913,18.5809262371054 +00:01:23.4018,69.750689999627,-6.50163912221669,-19.1224680065197,-0.0741871402031782,18.4447205568497 +00:01:23.4686,69.7508898505605,-6.4328651863537,-18.9201917245697,-0.0741599993438314,18.2698707491512 +00:01:23.5000,69.7509829819847,-6.40077275766357,-18.8258022284223,-0.0741492275770925,18.1877716367161 +00:01:23.5074,69.7510051029054,-6.38811293076684,-18.7885674434319,-0.0740948066089251,18.1682113100219 +00:01:23.5149,69.7510271661326,-6.36799669938479,-18.7294020570141,-0.0739629810551575,18.1486763492045 +00:01:23.5224,69.7510491501825,-6.34195955833927,-18.6528222304096,-0.0737693890143269,18.1291838138326 +00:01:23.5316,69.751076280775,-6.30601836760524,-18.5471128458978,-0.0734906535404905,18.1050875091668 +00:01:23.5468,69.7511203241808,-6.25035258759318,-18.3833899635094,-0.0730650140231821,18.0658734953466 +00:01:23.5619,69.7511640265479,-6.20672890205553,-18.2550850060457,-0.0727621634527729,18.026848673016 +00:01:23.5801,69.7512162054523,-6.17666285505543,-18.1666554560454,-0.0726287746814238,17.980118428738 +00:01:23.6038,69.7512837746003,-6.16502252917952,-18.1324192034692,-0.0727411703221666,17.9194098607267 +00:01:23.6274,69.7513512629863,-6.16587406137589,-18.1349237099291,-0.0729864349217985,17.8585689942463 +00:01:23.6511,69.7514187076411,-6.16097263049249,-18.1205077367426,-0.0731738206626596,17.7975647380233 +00:01:23.6747,69.7514860163233,-6.14236619075151,-18.065782913975,-0.0732178033028119,17.7364699847216 +00:01:23.7063,69.7515756935443,-6.10307402960645,-17.9502177341366,-0.0731237110451034,17.6547150437792 +00:01:23.7380,69.7516648026848,-6.06156936003325,-17.8281451765684,-0.0730045429039892,17.5730602211499 +00:01:23.7696,69.7517533751352,-6.0276494517729,-17.7283807405085,-0.0729656337053965,17.491480749905 +00:01:23.8091,69.7518632244843,-5.99412614763692,-17.6297827871674,-0.0730119843685105,17.3897313946199 +00:01:23.8486,69.751972449538,-5.96137841035357,-17.5334659128046,-0.0730678416840566,17.2879261208068 +00:01:23.8976,69.7521072449354,-5.91475290712596,-17.3963320797822,-0.0730731756287615,17.1613931424399 +00:01:23.9655,69.752291947553,-5.84657609684197,-17.1958120495352,-0.0730399248061019,16.9863539106633 +00:01:24.0000,69.7523850498244,-5.81246076357725,-17.0954728340507,-0.0730289252731928,16.897376780018 +00:01:24.0064,69.7524023384435,-5.8021827032632,-17.0652432448918,-0.0729827147838167,16.8807973479153 +00:01:24.0128,69.7524195863781,-5.78567872391005,-17.0167021291472,-0.0728661589808405,16.8642371017586 +00:01:24.0192,69.7524367774959,-5.76379276283089,-16.952331655385,-0.0726885532923463,16.8477099788244 +00:01:24.0271,69.7524577821572,-5.73275956913063,-16.8610575562666,-0.0724228449046137,16.8274854859316 +00:01:24.0412,69.7524949499154,-5.67695724613957,-16.6969330768811,-0.071941740420473,16.7916116892823 +00:01:24.0553,69.7525317864479,-5.62903162114305,-16.5559753563031,-0.0715471459837838,16.7559497548843 +00:01:24.0694,69.7525683637676,-5.59603131899082,-16.4589156440906,-0.0713194073329844,16.7204386217473 +00:01:24.0884,69.7526176067487,-5.57550525399347,-16.3985448646867,-0.0712832107127606,16.6724916997959 +00:01:24.1074,69.7526667426718,-5.57356606622635,-16.392841371254,-0.0714588872880423,16.6245046802595 +00:01:24.1265,69.752715872281,-5.5770408399283,-16.4030612939068,-0.0716985038312383,16.5763893050937 +00:01:24.1455,69.7527649990093,-5.57506811317656,-16.3972591564017,-0.0718779402816479,16.5281413937722 +00:01:24.1645,69.7528140601404,-5.56281395936925,-16.3612175275566,-0.0719403682265024,16.479814872266 +00:01:24.1935,69.7528884958459,-5.52972769778432,-16.2639049934833,-0.0718689516740381,16.4061980267712 +00:01:24.2225,69.752962469404,-5.49138012579307,-16.1511180170384,-0.0717350522692206,16.3326712586771 +00:01:24.2515,69.7530359798443,-5.45838924455254,-16.0540860133898,-0.0716622350462102,16.2592363610638 +00:01:24.2805,69.7531091005369,-5.43301319618065,-15.9794505770019,-0.0716783799024426,16.1858284706677 +00:01:24.3249,69.7532203694305,-5.39816272604791,-15.8769491942586,-0.0717512176896821,16.0734307236889 +00:01:24.3693,69.7533308650683,-5.35980454447883,-15.764131013173,-0.0717836573523097,15.9609695918228 +00:01:24.4136,69.7534405224286,-5.31680764460082,-15.6376695429436,-0.0717606697888691,15.8485036938945 +00:01:24.4819,69.7536075972658,-5.25113532336241,-15.4445156569483,-0.0717307791387566,15.6754534279811 +00:01:24.5000,69.7536513243465,-5.2343239791657,-15.3950705269579,-0.0717290752189206,15.6298164358482 +00:01:24.5063,69.7536667147129,-5.22437098852669,-15.3657970250785,-0.0716788736355565,15.6137183902671 +00:01:24.5127,69.7536820656574,-5.20803452507609,-15.317748603165,-0.0715496905553374,15.5976411765996 +00:01:24.5190,69.7536973607068,-5.18614611666457,-15.2533709313664,-0.0713515433711993,15.5816003772771 +00:01:24.5254,69.7537125868984,-5.16074805179385,-15.1786707405702,-0.0711094980472843,15.5656083086437 +00:01:24.5380,69.7537426976685,-5.10872289390554,-15.0256555703104,-0.0706078363559187,15.5339109583019 +00:01:24.5533,69.7537787010467,-5.0536192141476,-14.8635859239635,-0.0700943995985302,15.4958862188834 +00:01:24.5687,69.7538143814167,-5.01561677540695,-14.7518140453146,-0.0697897533020041,15.4580760772686 +00:01:24.5840,69.7538498621784,-4.99702964215005,-14.6971460063237,-0.0697242671500571,15.4203650453715 +00:01:24.6026,69.7538929108455,-4.99327234952472,-14.6860951456609,-0.069879238457776,15.3744785424492 +00:01:24.6212,69.7539359528103,-4.99811307612493,-14.700332576838,-0.0701437850684505,15.3284648106706 +00:01:24.6398,69.7539790122487,-4.9997723735339,-14.705212863335,-0.0703712313997705,15.2822994358391 +00:01:24.6584,69.754022039921,-4.99180685644152,-14.6817848718868,-0.0704793631517144,15.236028326351 +00:01:24.6833,69.7540793399213,-4.96708498804854,-14.6090734942604,-0.0704463998461884,15.1741733619476 +00:01:24.7081,69.7541363217507,-4.93467572899363,-14.5137521440989,-0.0703147219494134,15.1123806452391 +00:01:24.7330,69.7541929521221,-4.90392637294427,-14.4233128616008,-0.0702026737606929,15.0506832863031 +00:01:24.7578,69.754249269908,-4.87950429289902,-14.3514832144089,-0.0701708411653755,14.9890441525857 +00:01:24.7946,69.7543319900858,-4.85122832532898,-14.2683186039088,-0.0702245403334494,14.8980035951493 +00:01:24.8313,69.7544142225791,-4.82395190816699,-14.18809384755,-0.0702925568639998,14.8068991860489 +00:01:24.8680,69.7544959454968,-4.79245262788239,-14.0954489055364,-0.0703062282585809,14.715751861943 +00:01:24.9200,69.7546108324375,-4.74367896451311,-13.9519969544503,-0.0702711169239697,14.586557268989 +00:01:24.9721,69.7547245706657,-4.69580817898655,-13.811200526431,-0.0702474202245796,14.4574010345123 +00:01:25.0000,69.7547849727638,-4.67144373609682,-13.7395404002848,-0.0702515680299534,14.3882917776745 +00:01:25.0050,69.7547959646446,-4.66442639798008,-13.7189011705296,-0.0702174439580209,14.3756756641555 +00:01:25.0101,69.7548069343847,-4.65297793972849,-13.6852292344956,-0.0701229774076344,14.3630715162606 +00:01:25.0152,69.754817872302,-4.63729431088078,-13.6391009143552,-0.0699706608316358,14.3504894091502 +00:01:25.0203,69.7548287699266,-4.61847173288768,-13.5837403908461,-0.0697752845575486,14.3379381841017 +00:01:25.0320,69.7548537150617,-4.57066644359911,-13.4431365988209,-0.0692632006041217,14.3091459158239 +00:01:25.0465,69.7548841198965,-4.51348384087656,-13.2749524731664,-0.0686524831354399,14.2739336898083 +00:01:25.0609,69.7549141912928,-4.46871039604291,-13.1432658707144,-0.0682074027808247,14.2389829060687 +00:01:25.0754,69.7549440263538,-4.4418853819412,-13.0643687704153,-0.068004568909788,14.2041940434573 +00:01:25.0949,69.7549840821967,-4.43029864526733,-13.0302901331392,-0.0680659233853237,14.1573347425434 +00:01:25.1144,69.7550240934725,-4.43458513193511,-13.042897446868,-0.068346988355365,14.1103694024667 +00:01:25.1339,69.7550641338043,-4.43997686852406,-13.058755495659,-0.0686469924433798,14.0632192356984 +00:01:25.1534,69.7551041740681,-4.43645803444197,-13.0484059836529,-0.0688265768738078,14.0159130853258 +00:01:25.1729,69.7551441299115,-4.42140944233519,-13.0041454186329,-0.0688468439010753,13.968539054883 +00:01:25.1994,69.7551982479148,-4.38996039437376,-12.9116482187464,-0.068720356034537,13.9040849243264 +00:01:25.2259,69.7552519832612,-4.35668205920873,-12.8137707623786,-0.0685660894758172,13.8397465304443 +00:01:25.2525,69.7553053577111,-4.32953146312969,-12.7339160680285,-0.0684967885353625,13.7755016989202 +00:01:25.2790,69.7553584404852,-4.30925376492035,-12.6742757791775,-0.0685248953794133,13.7112762682532 +00:01:25.3156,69.7554312435745,-4.28438274189282,-12.6011257114495,-0.0686091501413812,13.6226545989601 +00:01:25.3522,69.755503586932,-4.25657754540461,-12.5193457217783,-0.0686525947761227,13.5339651509119 +00:01:25.3888,69.7555754205716,-4.22447167900927,-12.4249167029684,-0.068633865923188,13.445262416727 +00:01:25.4467,69.7556880367837,-4.17281407849446,-12.2729825838072,-0.0685912230313474,13.3048768267507 +00:01:25.5000,69.7557902739526,-4.12775022173161,-12.1404418286224,-0.0685868097844585,13.1759903442172 +00:01:25.5046,69.7557990744573,-4.1218193994429,-12.1229982336556,-0.0685558870795678,13.1648300271091 +00:01:25.5092,69.7558078580618,-4.11220907772332,-12.0947325815392,-0.0684694131574982,13.1536796354511 +00:01:25.5138,69.7558166173292,-4.09894915215568,-12.0557328004579,-0.0683276857318702,13.1425477468961 +00:01:25.5184,69.7558253455061,-4.08284850656372,-12.0083779604815,-0.0681427946894381,13.131442173381 +00:01:25.5285,69.7558444426723,-4.0426501741572,-11.8901475710506,-0.0676627901084509,13.1070939629539 +00:01:25.5420,69.7558695134426,-3.98822494006383,-11.7300733531289,-0.0670065767681398,13.0750240052446 +00:01:25.5555,69.7558942771943,-3.9421675318884,-11.5946103879071,-0.0664731758080351,13.0432296652 +00:01:25.5690,69.7559188038455,-3.9110251672126,-11.5030151976841,-0.0661620233167628,13.0116319102481 +00:01:25.5855,69.7559485992401,-3.89389829962742,-11.4526420577277,-0.0660962316141881,12.9731194573768 +00:01:25.6020,69.7559783221629,-3.8934344480643,-11.4512777884244,-0.0662836291290301,12.9345775763635 +00:01:25.6184,69.7560080595605,-3.89989042606763,-11.4702659590224,-0.0665791749995145,12.895904683302 +00:01:25.6349,69.7560378315332,-3.90427851474459,-11.48317210219,-0.0668464327991304,12.8570758855543 +00:01:25.6514,69.7560676052191,-3.901192955853,-11.4740969289794,-0.0670012219466111,12.8181281755797 +00:01:25.6728,69.7561061775404,-3.88509150886583,-11.4267397319583,-0.0670166445520844,12.7674816328055 +00:01:25.6942,69.7561445531044,-3.86036584171545,-11.354017181516,-0.0668974784306198,12.7168679912001 +00:01:25.7156,69.7561826838896,-3.83408469960385,-11.2767197047172,-0.0667523513493307,12.666344877724 +00:01:25.7370,69.7562205775962,-3.81148993633175,-11.2102645186228,-0.0666634742464769,12.6159040556194 +00:01:25.7650,69.7562697973716,-3.78927380740339,-11.1449229629512,-0.0666615821474649,12.5500460179145 +00:01:25.8026,69.7563355557907,-3.76485276184648,-11.073096358372,-0.0667464507127851,12.461459568022 +00:01:25.8402,69.7564008603686,-3.73892093074583,-10.9968262668995,-0.0668090415520882,12.372793943908 +00:01:25.8778,69.7564656696923,-3.70857025048696,-10.9075595602558,-0.0668010309719318,12.2840989440141 +00:01:25.9365,69.7565657628331,-3.65912872849633,-10.7621433191069,-0.0667540396945055,12.14569072325 +00:01:26.0000,69.7566725012696,-3.60813653288469,-10.6121662731903,-0.0667428954236779,11.9961214442154 +00:01:26.0040,69.7566793026697,-3.60334054545038,-10.5980604277952,-0.0667165728833954,11.9865196942231 +00:01:26.0081,69.7566860920635,-3.59568246741358,-10.5755366688635,-0.0666419916875738,11.9769255393649 +00:01:26.0122,69.756692864233,-3.58506780758472,-10.5443170811315,-0.0665174332224726,11.9673457012585 +00:01:26.0162,69.7566996142393,-3.57203398094945,-10.5059822969102,-0.0663518570884014,11.957786557411 +00:01:26.0248,69.7567136477219,-3.54029605566808,-10.4126354578473,-0.0659291004281344,11.9378760834688 +00:01:26.0373,69.7567341076727,-3.49012912530046,-10.2650856626484,-0.065246248877692,11.9087552705329 +00:01:26.0499,69.7567542935228,-3.44427539995598,-10.1302217645764,-0.0646326850807597,11.8799154008768 +00:01:26.0625,69.7567742495858,-3.40976585263552,-10.0287230959868,-0.0642069890295894,11.8513009689755 +00:01:26.0751,69.7567940466153,-3.38927999757558,-9.96847058110463,-0.0640152689012702,11.8228222413496 +00:01:26.0918,69.7568202742554,-3.38050016876958,-9.94264755520466,-0.0640711413661947,11.7849705314993 +00:01:26.1085,69.7568464772422,-3.38462880188362,-9.95479059377534,-0.064347743848224,11.7470289292578 +00:01:26.1252,69.7568727145883,-3.39157817527973,-9.97522992729331,-0.0646763618989426,11.7089194731416 +00:01:26.1420,69.7568989808637,-3.39357634361069,-9.98110689297262,-0.0649239479877401,11.6706473251577 +00:01:26.1587,69.7569252281194,-3.38710930525775,-9.96208619193456,-0.065027931719768,11.6322737607361 +00:01:26.1824,69.7569622475912,-3.36603789757628,-9.90011146345965,-0.0649693637687957,11.5779110156741 +00:01:26.2061,69.7569990102538,-3.33864529860092,-9.81954499588505,-0.0647989680208889,11.5236325052926 +00:01:26.2298,69.757035491993,-3.31302673449448,-9.74419627792494,-0.0646572362755841,11.4694715911532 +00:01:26.2535,69.7570717279859,-3.29312556169506,-9.68566341675017,-0.0646146837809177,11.4153824130197 +00:01:26.2856,69.7571206164452,-3.27277096441156,-9.62579695415164,-0.0646750990794629,11.3419494205938 +00:01:26.3178,69.7571692018691,-3.253826150167,-9.57007691225587,-0.0647624375739609,11.2684464352343 +00:01:26.3499,69.757217474342,-3.23174463934642,-9.50513129219534,-0.0647947054506631,11.1948859176915 +00:01:26.3915,69.7572793370157,-3.19915633871286,-9.40928334915547,-0.0647629192966995,11.0998140526817 +00:01:26.4426,69.7573545384414,-3.15894262571176,-9.29100772268164,-0.0647198898732861,10.9829889828856 +00:01:26.4937,69.7574288249097,-3.12110914022349,-9.17973276536319,-0.064720625911395,10.8661904389831 +00:01:26.5000,69.7574378547613,-3.11667314245553,-9.16668571310451,-0.0647244046610635,10.8518961844341 +00:01:26.5040,69.7574436384097,-3.11231006706435,-9.15385313842454,-0.0646980731756772,10.8427292992784 +00:01:26.5080,69.7574494112255,-3.10522716063062,-9.13302106067828,-0.0646200789206632,10.8335701020688 +00:01:26.5120,69.7574551682959,-3.0953339151123,-9.10392327974207,-0.0644885649798884,10.8244257210756 +00:01:26.5160,69.7574609049784,-3.08312980578158,-9.06802884053406,-0.0643129136153542,10.8153029096065 +00:01:26.5240,69.7574722972346,-3.05461859800156,-8.98417234706341,-0.0638826701696222,10.7971517429943 +00:01:26.5359,69.7574889950259,-3.00876709457814,-8.84931498405336,-0.0631743158981472,10.77046033453 +00:01:26.5478,69.7575054526003,-2.96582427428902,-8.72301257143828,-0.0625178566159231,10.7440493989292 +00:01:26.5597,69.7575217027059,-2.93215233869171,-8.62397746674033,-0.0620337971276361,10.7178729527331 +00:01:26.5716,69.7575378020184,-2.91064613421843,-8.56072392417184,-0.0617775719272932,10.6918503041043 +00:01:26.5883,69.7575602233204,-2.89901845194746,-8.52652485866899,-0.0617677629692146,10.6554815749903 +00:01:26.6049,69.7575826048388,-2.90176722126433,-8.53460947430687,-0.062033296160953,10.6190453403677 +00:01:26.6216,69.7576050171405,-2.90917011897225,-8.55638270285955,-0.0623923958654523,10.582437299098 +00:01:26.6383,69.7576274669221,-2.9130832527592,-8.56789191988001,-0.0626890007147802,10.5456453926995 +00:01:26.6549,69.757649914491,-2.90922102196493,-8.5565324175439,-0.0628379344868628,10.5087261553346 +00:01:26.6759,69.7576780980163,-2.89371059476096,-8.51091351400283,-0.0628190378953229,10.4621699168166 +00:01:26.6969,69.7577061036005,-2.87143575782514,-8.44539928772099,-0.06266617191226,10.4156692215928 +00:01:26.7179,69.7577338974229,-2.84871465493842,-8.37857251452476,-0.0625021767869861,10.369275768266 +00:01:26.7389,69.7577614927824,-2.82978377920005,-8.32289346823544,-0.0624113714831044,10.3229707685049 +00:01:26.7653,69.7577960542532,-2.81213162779279,-8.27097537586114,-0.062419842753531,10.2646393709125 +00:01:26.7982,69.7578387765472,-2.79426163413145,-8.21841657097486,-0.0625138562224815,10.1920171114613 +00:01:26.8312,69.757881207192,-2.77518420996637,-8.16230649990109,-0.0625855829801359,10.1193139536038 +00:01:26.8641,69.7579233163381,-2.75254488276761,-8.09572024343416,-0.0625853773271564,10.0465751449294 +00:01:26.9136,69.7579860460629,-2.71602517346299,-7.98830933371467,-0.0625339430849152,9.93709025108513 +00:01:26.9632,69.758047964441,-2.68080843651153,-7.88473069562214,-0.0625085440800881,9.82765436148316 +00:01:27.0000,69.758093378011,-2.65617736445517,-7.81228636604462,-0.062521276482695,9.74649749086439 +00:01:27.0034,69.7580976084435,-2.65289132582005,-7.80262154652957,-0.0625013871979432,9.7388980303229 +00:01:27.0068,69.7581018320166,-2.64768128662458,-7.78729790183699,-0.0624399543375857,9.7313036634822 +00:01:27.0103,69.7581060456412,-2.64039255901204,-7.76586046768246,-0.0623335324716498,9.72371948356398 +00:01:27.0137,69.7581102462893,-2.63130687207182,-7.73913785903477,-0.0621881222086674,9.71615049474228 +00:01:27.0202,69.7581181537866,-2.61075442500812,-7.678689485318,-0.0618397941946076,9.70187843192815 +00:01:27.0313,69.7581314703455,-2.57090984863041,-7.56149955479532,-0.0611398903469349,9.67776891575814 +00:01:27.0424,69.7581445845047,-2.53079570838192,-7.44351678935859,-0.0604312730426002,9.6539304419625 +00:01:27.0536,69.7581575106882,-2.49650225873138,-7.34265370215113,-0.0598448280641644,9.63034050834434 +00:01:27.0647,69.7581702864272,-2.47163807056532,-7.26952373695684,-0.0594581176166704,9.60693873458157 +00:01:27.0788,69.7581863723191,-2.45472066796599,-7.21976667048819,-0.0592792815789258,9.5773653752105 +00:01:27.0929,69.7582023895754,-2.4512351075992,-7.2095150223506,-0.0593893743347519,9.54781233116153 +00:01:27.1069,69.7582184059962,-2.45573880816248,-7.22276120047789,-0.0596748527550992,9.51816746347704 +00:01:27.1210,69.7582344543016,-2.46223508925418,-7.24186790957113,-0.0600079100002189,9.48837516376132 +00:01:27.1351,69.7582505331759,-2.46594897341227,-7.2527910982714,-0.0602841950583939,9.45843580032853 +00:01:27.1492,69.7582666175725,-2.46427023481261,-7.24785363180179,-0.0604445169160926,9.42838975794388 +00:01:27.1690,69.7582890590986,-2.45286733824912,-7.21431570073272,-0.0604697794888703,9.38629173320511 +00:01:27.1887,69.7583113684089,-2.4345597566084,-7.16046987237766,-0.0603402884529121,9.34422449103717 +00:01:27.2084,69.7583335076972,-2.41446840536972,-7.10137766285212,-0.0601685406942235,9.30225326648278 +00:01:27.2281,69.7583554777017,-2.39667411886896,-7.04904152608518,-0.0600463017109106,9.26037806218878 +00:01:27.2519,69.7583817775582,-2.38031255992711,-7.00091929390327,-0.0600127389786261,9.20995751578423 +00:01:27.2872,69.7584205356159,-2.36174781790268,-6.94631711147847,-0.060094281123688,9.13507569544599 +00:01:27.3225,69.7584589827312,-2.34365632123399,-6.8931068271588,-0.0601894510918043,9.06010326517996 +00:01:27.3578,69.7584970997586,-2.32219559376396,-6.82998704048224,-0.0602077468673513,8.98507252548166 +00:01:27.4006,69.7585428220922,-2.29329109526892,-6.74497380961447,-0.0601614682425696,8.8941109362515 +00:01:27.4434,69.7585879843064,-2.26481236132669,-6.66121282743145,-0.0601239897181949,8.80319770949929 +00:01:27.5000,69.7586468114386,-2.22959444480064,-6.55763072000188,-0.0601322166786594,8.68312832881323 +00:01:27.5031,69.7586501039841,-2.22685757961701,-6.54958111652062,-0.0601141514627175,8.67635124821566 +00:01:27.5063,69.7586533913044,-2.2225756270355,-6.53698713833969,-0.0600577404640003,8.66957844609308 +00:01:27.5095,69.7586566710491,-2.2165878742239,-6.51937610065852,-0.0599588980269798,8.66281437406809 +00:01:27.5127,69.7586599408832,-2.20909294774974,-6.49733219926395,-0.0598224787949787,8.65606346609328 +00:01:27.5185,69.7586658185774,-2.1927958099874,-6.44939944113941,-0.0595070862762824,8.64390871701761 +00:01:27.5290,69.7586763726479,-2.15837679514849,-6.34816704455437,-0.0588127743072555,8.62201572518171 +00:01:27.5394,69.7586867583255,-2.12244701919783,-6.24249123293481,-0.0580785027350586,8.60038281051553 +00:01:27.5499,69.7586969815597,-2.0902945178594,-6.14792505252763,-0.0574347522260003,8.57899977351334 +00:01:27.5604,69.7587070679511,-2.06540645008224,-6.07472485318305,-0.0569671433262043,8.55781952047215 +00:01:27.5731,69.7587191067509,-2.04690988512093,-6.02032319153216,-0.0566837016359973,8.53244109091923 +00:01:27.5857,69.7587310700318,-2.03987694063391,-5.99963806068797,-0.0566813812201629,8.50712788872225 +00:01:27.5983,69.7587430140493,-2.04111612862686,-6.00328273125547,-0.0568848982591906,8.48177397439393 +00:01:27.6110,69.758754974611,-2.04642066625372,-6.01888431251095,-0.0571929162861499,8.45631068656202 +00:01:27.6236,69.7587669642818,-2.05180688906697,-6.0347261443146,-0.0575072716217075,8.4307125912041 +00:01:27.6362,69.7587789758729,-2.05437602173991,-6.04228241688209,-0.0577544847734773,8.40499181975233 +00:01:27.6524,69.7587943071399,-2.05145151384574,-6.03368092307571,-0.0579161670511981,8.3720427580349 +00:01:27.6749,69.75881562479,-2.0375399740801,-5.99276462964734,-0.0578925725376763,8.32598384011635 +00:01:27.6975,69.7588367707055,-2.01744689261754,-5.93366733122805,-0.0577080417657997,8.27999721481893 +00:01:27.7200,69.7588577146595,-1.99743276799903,-5.87480225882068,-0.0575220796699273,8.23414390851315 +00:01:27.7425,69.7588784739434,-1.98131902011783,-5.8274088826995,-0.0574350500683113,8.18839158770267 +00:01:27.7651,69.7588990866264,-1.96942298805715,-5.79242055310928,-0.0574579721334556,8.14266548281625 +00:01:27.7938,69.7589251703183,-1.95677795303096,-5.75522927362048,-0.057555012135312,8.0843795157063 +00:01:27.8224,69.7589510747895,-1.94329493569428,-5.71557334027729,-0.057632095209867,8.02601666599852 +00:01:27.8511,69.7589767810504,-1.92727396720539,-5.66845284472173,-0.0576419012452809,7.9676145645551 +00:01:27.8935,69.7590143437667,-1.90130084205895,-5.59206130017339,-0.0575927544326554,7.8813694872391 +00:01:27.9359,69.7590514081195,-1.87575678084443,-5.51693170836598,-0.0575538561601362,7.79517563668663 +00:01:27.9783,69.7590879898318,-1.8518400112617,-5.44658826841676,-0.0575601452791843,7.70900020617655 +00:01:28.0000,69.7591064804078,-1.84006245837587,-5.41194840698785,-0.0575758702145928,7.66501196464359 +00:01:28.0031,69.7591091979121,-1.8375733918818,-5.40462762318177,-0.0575565581596961,7.65852223472745 +00:01:28.0063,69.7591119106118,-1.83364980381626,-5.39308765828311,-0.0574957970104405,7.65203716621736 +00:01:28.0095,69.7591146163485,-1.82814873502476,-5.37690804419046,-0.0573893480491597,7.64556152189886 +00:01:28.0127,69.7591173129713,-1.82125523571883,-5.35663304623185,-0.0572424828143906,7.63910005818475 +00:01:28.0182,69.7591219534337,-1.80692738625311,-5.31449231250915,-0.0569185291941298,7.62796173032566 +00:01:28.0282,69.7591301946532,-1.77696404301478,-5.22636483239642,-0.0562130471834587,7.60811656901194 +00:01:28.0381,69.759138296074,-1.74539190966488,-5.1335056166614,-0.0554591216243707,7.58852364049612 +00:01:28.0481,69.7591462606684,-1.71654951366858,-5.0486750402017,-0.0547811419370362,7.56917727659954 +00:01:28.0580,69.7591541070585,-1.69344573233111,-4.98072274215033,-0.0542645727104337,7.55003773770632 +00:01:28.0679,69.7591618641311,-1.67754175322431,-4.93394633301268,-0.0539509410460575,7.53104299141011 +00:01:28.0822,69.759172913611,-1.66670394644781,-4.90207043072885,-0.0538405531557912,7.50387777557974 +00:01:28.0965,69.7591839248422,-1.66658978465649,-4.90173466075439,-0.0540379740530038,7.47669495453635 +00:01:28.1107,69.7591949495108,-1.67197176806742,-4.91756402372772,-0.0543984244471089,7.44938001954384 +00:01:28.1250,69.7592060073812,-1.67769094539016,-4.93438513350048,-0.0547750965652423,7.42188695195241 +00:01:28.1392,69.7592170898315,-1.68004411859792,-4.94130623117034,-0.0550588019057164,7.39423228931027 +00:01:28.1535,69.759228170653,-1.67736894109454,-4.93343806204277,-0.0551973931914438,7.36647275797047 +00:01:28.1735,69.7592436540283,-1.66620140920541,-4.90059238001592,-0.0551725441402782,7.32748275998911 +00:01:28.1935,69.7592590145937,-1.6500842182305,-4.85318887714853,-0.0549975140861923,7.28855559089922 +00:01:28.2135,69.7592742247528,-1.63286982686534,-4.80255831430984,-0.0547858782606389,7.24975600307092 +00:01:28.2336,69.7592892865696,-1.61750558259503,-4.75736936057361,-0.0546269047511015,7.21108134455532 +00:01:28.2536,69.7593042220232,-1.60541265954387,-4.72180193983491,-0.0545655776033264,7.17248240176267 +00:01:28.2829,69.7593259581592,-1.59221661137482,-4.68299003345534,-0.0546149882895806,7.11587016725674 +00:01:28.3123,69.7593475221183,-1.58083607757303,-4.64951787521479,-0.0547232670546721,7.05918789039928 +00:01:28.3416,69.7593689168392,-1.56802565570119,-4.61184016382702,-0.0547893365784706,7.00242677447942 +00:01:28.3710,69.7593901212879,-1.55295768539287,-4.56752260409668,-0.0547845394839925,6.94563622725183 +00:01:28.4168,69.7594227735861,-1.52808891471175,-4.49437916091692,-0.0547317231252646,6.85709940383112 +00:01:28.4626,69.7594549154374,-1.50415914404878,-4.42399748249642,-0.0547080121412755,6.76860790090877 +00:01:28.5000,69.759480783239,-1.48575495198419,-4.36986750583584,-0.0547262891547652,6.69638488477567 +00:01:28.5025,69.7594825239144,-1.48414001463694,-4.36511769010863,-0.0547150454059016,6.69149176767466 +00:01:28.5050,69.7594842622127,-1.48172134319909,-4.35800395058557,-0.0546764302247513,6.686600917309 +00:01:28.5081,69.7594863654499,-1.47753540867895,-4.34569237846751,-0.0545868346362539,6.68067701391205 +00:01:28.5112,69.7594884618685,-1.47209575626768,-4.32969340078729,-0.0544543535352347,6.6747650924701 +00:01:28.5155,69.7594914245883,-1.46265342903313,-4.30192185009744,-0.0542073646819825,6.66639702145012 +00:01:28.5247,69.7594976120558,-1.43864709787383,-4.23131499374656,-0.053546087328816,6.64886679192236 +00:01:28.5339,69.7595036921436,-1.41184610854119,-4.15248855453292,-0.0527884958600323,6.63156482775087 +00:01:28.5432,69.7595096610434,-1.38575791061818,-4.07575856064169,-0.052053524232614,6.61450150289901 +00:01:28.5524,69.7595155271328,-1.36311985797469,-4.00917605286673,-0.0514326373899425,6.59765592217053 +00:01:28.5616,69.7595213082501,-1.34566480090716,-3.95783764972695,-0.0509830324819543,6.58098315147159 +00:01:28.5737,69.7595288141201,-1.33155745899628,-3.91634546763613,-0.0506841716851846,6.5592419207463 +00:01:28.5858,69.7595362656885,-1.32647005190619,-3.90138250560645,-0.050685514248833,6.53756552201282 +00:01:28.5979,69.7595437055637,-1.32798319579215,-3.90583292880044,-0.0509102940846346,6.51584489583183 +00:01:28.6100,69.7595511616288,-1.33292260594013,-3.92036060570626,-0.0512555955333675,6.49400711606814 +00:01:28.6221,69.7595586447852,-1.33822512096525,-3.93595623813309,-0.0516193133936592,6.47202190249051 +00:01:28.6342,69.7595661511043,-1.34156718492134,-3.94578583800394,-0.0519211967251222,6.44989726579654 +00:01:28.6463,69.759573666593,-1.34165563582709,-3.94604598772675,-0.0521141714166756,6.42766817027302 +00:01:28.6635,69.7595842800476,-1.33603257882264,-3.92950758477247,-0.0521891616062969,6.39612948735225 +00:01:28.6806,69.7595948303702,-1.32539932693549,-3.89823331451615,-0.0520873994180403,6.36459568054878 +00:01:28.6977,69.7596052898951,-1.3125025779416,-3.86030169982824,-0.0519028886660348,6.33314188741547 +00:01:28.7148,69.7596156508118,-1.29999422846768,-3.82351243666965,-0.0517291438317464,6.30179068291195 +00:01:28.7320,69.7596259217822,-1.28954544823912,-3.79278073011504,-0.0516267494577599,6.27051994053269 +00:01:28.7542,69.7596391262546,-1.27946024064703,-3.76311835484422,-0.0516172581670529,6.23004079497227 +00:01:28.7811,69.759655028378,-1.27013459192947,-3.73568997626315,-0.051713135031874,6.1808789903434 +00:01:28.8080,69.7596708114151,-1.26103364962668,-3.708922498902,-0.0518205775601745,6.13163186599639 +00:01:28.8350,69.7596864676423,-1.25020311149832,-3.67706797499507,-0.0518659745294608,6.08231932877308 +00:01:28.8678,69.7597053206746,-1.23485724290619,-3.63193306737115,-0.0518397812032598,6.02230132995383 +00:01:28.9005,69.7597239392172,-1.21889220045049,-3.58497706014849,-0.0517884339978632,5.96231961898036 +00:01:28.9333,69.7597423240691,-1.20373419868097,-3.54039470200285,-0.0517671219806843,5.90237266844952 +00:01:28.9772,69.7597665844558,-1.184716089147,-3.48445908572648,-0.0517888269799426,5.82213535074319 +00:01:29.0000,69.7597790100803,-1.17509768582681,-3.45616966419649,-0.0518104500330971,5.78052286535295 +00:01:29.0025,69.759780411399,-1.17363124026921,-3.45185658902708,-0.0517975727098162,5.77580739871597 +00:01:29.0051,69.7597818105035,-1.17141958574563,-3.44535172278126,-0.0517542167192698,5.77109455500788 +00:01:29.0077,69.7597832064503,-1.16834253295138,-3.43630156750405,-0.0516753864004046,5.76638728064471 +00:01:29.0103,69.7597845982577,-1.16445726134807,-3.42487429808256,-0.0515633661848339,5.7616886469659 +00:01:29.0143,69.7597867858197,-1.15698750800809,-3.4029044353179,-0.0513316065909804,5.75429216313054 +00:01:29.0232,69.7597914766869,-1.13712400675298,-3.34448237280289,-0.0506783058714089,5.73838039273641 +00:01:29.0320,69.7597960811856,-1.11441989296084,-3.27770556753189,-0.0499085539548536,5.72268844623233 +00:01:29.0408,69.7598005941766,-1.09174798805855,-3.21102349428985,-0.049139524257363,5.7072325282436 +00:01:29.0497,69.7598050202138,-1.07144476820341,-3.15130814177474,-0.0484646014247467,5.69199901793334 +00:01:29.0585,69.7598093718303,-1.05511042703022,-3.10326596185358,-0.0479464570701319,5.67695012846145 +00:01:29.0695,69.7598146869421,-1.04148789753133,-3.06319969862156,-0.0475649054706903,5.65848131455386 +00:01:29.0804,69.7598199507907,-1.03493680181826,-3.0439317700537,-0.0474624489503682,5.6401064845336 +00:01:29.0913,69.7598251952114,-1.034164213309,-3.04165945090883,-0.0475908444891682,5.62172916153138 +00:01:29.1023,69.759830444123,-1.03715041486549,-3.05044239666321,-0.0478734081334355,5.60327566433467 +00:01:29.1132,69.7598357110304,-1.04169218211301,-3.06380053562651,-0.0482244180628408,5.58470292665098 +00:01:29.1242,69.7598409991536,-1.04585872678909,-3.07605507879144,-0.048566274626441,5.56599890621174 +00:01:29.1351,69.7598463034269,-1.04827369231597,-3.08315791857639,-0.0488412920505992,5.54717738917203 +00:01:29.1492,69.7598531203801,-1.04772611402341,-3.0815473941865,-0.0490477180638236,5.5228899995671 +00:01:29.1683,69.7598623652233,-1.04097964471137,-3.06170483738639,-0.0490797491802606,5.48975631992521 +00:01:29.1874,69.7598715323013,-1.02968669470212,-3.02849027853565,-0.0489175725134194,5.45666031908582 +00:01:29.2066,69.7598805969675,-1.01712002141296,-2.99152947474401,-0.0486969207852505,5.42368331204049 +00:01:29.2257,69.7598895588361,-1.00594928851519,-2.95867437798584,-0.0485321181968283,5.39082884715703 +00:01:29.2448,69.7598984338645,-0.997353678432513,-2.93339317186033,-0.0484762336068101,5.35804641032568 +00:01:29.2700,69.7599100150518,-0.989108083536153,-2.90914142216516,-0.0485365836353612,5.31490332406373 +00:01:29.2952,69.759921504415,-0.982101283855937,-2.88853318781158,-0.0486547040885524,5.27169027240272 +00:01:29.3204,69.7599329044969,-0.97424543760781,-2.86542775767003,-0.0487382652539993,5.22839655403471 +00:01:29.3456,69.7599442030256,-0.964794692147309,-2.83763144749208,-0.0487510562931692,5.18506267492908 +00:01:29.3833,69.7599609168442,-0.949121843410425,-2.79153483356007,-0.0486998291907972,5.120143699852 +00:01:29.4210,69.7599773620079,-0.933590751346741,-2.74585515101983,-0.0486528711081627,5.05527676418201 +00:01:29.4588,69.7599935470283,-0.919131738790925,-2.70332864350272,-0.0486561038405985,4.99043216880142 +00:01:29.5000,69.7600109338378,-0.9039421220471,-2.65865330013853,-0.0486898610439457,4.91961206115153 +00:01:29.5024,69.7600119389665,-0.90279433262106,-2.65527744888547,-0.0486788154835533,4.91547992635213 +00:01:29.5048,69.760012942512,-0.901090843818781,-2.6502671877023,-0.0486399358924781,4.91134990339311 +00:01:29.5072,69.7600139438,-0.898731223980053,-2.6433271293531,-0.0485681153049032,4.90722456927563 +00:01:29.5096,69.7600149421265,-0.895749006863595,-2.63455590253998,-0.0484649846752607,4.90310662075717 +00:01:29.5132,69.7600164426353,-0.890263542477097,-2.61842218375617,-0.0482598178013642,4.8969076337097 +00:01:29.5215,69.7600198459306,-0.874640442194178,-2.57247188880641,-0.047636439576436,4.88280115453432 +00:01:29.5299,69.7600231842495,-0.856360924626459,-2.51870860184253,-0.0468807307999194,4.86889594794885 +00:01:29.5382,69.7600264520476,-0.837594094599568,-2.46351204293991,-0.0461015255148193,4.85521299481662 +00:01:29.5465,69.7600296507761,-0.820182344187231,-2.41230101231538,-0.0453888747724155,4.84174688705474 +00:01:29.5549,69.7600327880118,-0.805490736163061,-2.36909040047959,-0.0448075875676915,4.82846962524957 +00:01:29.5632,69.7600358755869,-0.794336524440827,-2.3362838954142,-0.0443954918349157,4.81533787323981 +00:01:29.5750,69.7600401851067,-0.784926250270631,-2.30860661844303,-0.0441160981637608,4.79691554127232 +00:01:29.5868,69.7600444607295,-0.782047383314735,-2.3001393626904,-0.0441501387910403,4.778545582819 +00:01:29.5985,69.7600487320719,-0.783816622656179,-2.30534300781229,-0.0444123317842564,4.76011838574483 +00:01:29.6103,69.7600530180083,-0.7878952715121,-2.31733903385912,-0.0447943275603105,4.74156199332003 +00:01:29.6221,69.7600573253957,-0.792090530351186,-2.32967803044467,-0.0451907386692648,4.72284779060751 +00:01:29.6339,69.7600616508277,-0.794773597235748,-2.33756940363455,-0.0455193304536008,4.70398559219123 +00:01:29.6456,69.7600659840582,-0.795055211922603,-2.3383976821253,-0.0457317718463624,4.68501215572727 +00:01:29.6612,69.7600716963564,-0.791604164844566,-2.32824754366049,-0.0458203313125653,4.65986729296299 +00:01:29.6768,69.7600773724077,-0.784785674103641,-2.30819315912836,-0.0457347580660647,4.63471905853252 +00:01:29.6923,69.7600829943395,-0.776207583568447,-2.28296348108367,-0.0455548492793837,4.60963866008449 +00:01:29.7079,69.7600885552775,-0.767518394219498,-2.25740704182205,-0.0453655669079968,4.58465492873372 +00:01:29.7234,69.7600940582246,-0.759905615655222,-2.23501651663301,-0.0452297964478033,4.55975751482899 +00:01:29.7422,69.7601006197448,-0.752791485269317,-2.21409260373329,-0.0451726319764191,4.52984585166556 +00:01:29.7686,69.7601097916252,-0.745446644747773,-2.1924901316111,-0.0452363460991281,4.48762816688768 +00:01:29.7951,69.7601188773706,-0.739162608542307,-2.17400767218326,-0.0453615229964077,4.44533297117633 +00:01:29.8215,69.7601278785883,-0.732046154178095,-2.15307692405322,-0.0454450078351353,4.40295088698395 +00:01:29.8479,69.7601367835298,-0.723517707377282,-2.12799325699201,-0.0454510161732865,4.36052974404289 +00:01:29.8864,69.760149554863,-0.709978524851044,-2.08817213191483,-0.0453943441037798,4.29878849766999 +00:01:29.9249,69.7601620907369,-0.696717861683914,-2.04917018142327,-0.0453510325553089,4.23710089453589 +00:01:29.9634,69.7601743995224,-0.684357312839132,-2.01281562599745,-0.0453604471586179,4.17543042725187 +00:01:30.0000,69.7601858808691,-0.672996239945585,-1.97940070572231,-0.0453933343241861,4.11687208943015 +00:01:30.0021,69.7601865432293,-0.672167796107889,-1.97696410619967,-0.0453848348631142,4.11346229283234 +00:01:30.0042,69.7601872045997,-0.670979165883033,-1.9734681349501,-0.0453536957343381,4.11005397257563 +00:01:30.0068,69.7601880016567,-0.668962008273811,-1.96753531845239,-0.0452794516490368,4.10594135158343 +00:01:30.0093,69.7601887959613,-0.666341304977266,-1.95982736758019,-0.0451671140935929,4.10183716643131 +00:01:30.0126,69.7601897895577,-0.662314894141009,-1.94798498276767,-0.044979696762812,4.09669464262812 +00:01:30.0199,69.76019201232,-0.651076596573336,-1.91493116639216,-0.0444218321352879,4.08515262988374 +00:01:30.0288,69.7601946546864,-0.634951401194346,-1.86750412115984,-0.0435908473594559,4.07135737648082 +00:01:30.0376,69.7601972300726,-0.618061160212968,-1.81782694180285,-0.0427152256540204,4.05782544442541 +00:01:30.0465,69.7601997391965,-0.602312719254207,-1.77150799780649,-0.0419112773413205,4.04455302294271 +00:01:30.0554,69.7602021893968,-0.589140634693934,-1.73276657262922,-0.0412627435163246,4.03150605203748 +00:01:30.0643,69.7602045927216,-0.57939440682955,-1.7041011965575,-0.0408172061533178,4.01862968719398 +00:01:30.0754,69.7602075703948,-0.572278381056957,-1.68317170899105,-0.0405593766831731,4.00258223469467 +00:01:30.0866,69.7602105239041,-0.570185085748486,-1.67701495808378,-0.0405989659486967,3.98657940185401 +00:01:30.0978,69.7602134750319,-0.571696446688477,-1.68146013731905,-0.0408573733739401,3.97052159081803 +00:01:30.1089,69.760216437836,-0.57506779911503,-1.69137587975009,-0.0412357209121476,3.95434236461002 +00:01:30.1201,69.7602194178327,-0.578653993370157,-1.70192350991222,-0.0416369316673425,3.93801305828775 +00:01:30.1312,69.7602224131596,-0.581203020647086,-1.70942064896202,-0.0419829204629791,3.92153904086957 +00:01:30.1424,69.7602254168515,-0.581983465561794,-1.71171607518175,-0.0422243163330213,3.90495059541577 +00:01:30.1565,69.760229204865,-0.580176789356911,-1.70640232163797,-0.0423558809063095,3.88391904097539 +00:01:30.1706,69.7602329729161,-0.575750705265284,-1.69338442725084,-0.0423194755857177,3.86286239112404 +00:01:30.1847,69.7602367074181,-0.569661350363254,-1.67547455989192,-0.042172836737055,3.84184780821406 +00:01:30.1988,69.7602404011388,-0.563016680662398,-1.65593141371294,-0.0419865276238836,3.82091238521605 +00:01:30.2128,69.7602440533286,-0.556757247817946,-1.6375213171116,-0.0418221340105906,3.80006141017636 +00:01:30.2269,69.7602476680779,-0.551454066881241,-1.6219237261213,-0.0417182784585959,3.77927574603035 +00:01:30.2461,69.7602525441137,-0.545926734527389,-1.60566686625703,-0.0416878342915802,3.75100663277115 +00:01:30.2653,69.7602573766784,-0.541785622324685,-1.59348712448437,-0.0417513629200729,3.7227286912263 +00:01:30.2845,69.7602621737181,-0.538135052996882,-1.58275015587318,-0.0418512023710964,3.69439991699173 +00:01:30.3037,69.7602669363147,-0.534190026958418,-1.57114713811299,-0.0419338283220826,3.66601301349781 +00:01:30.3272,69.7602727167321,-0.528438026427593,-1.55422948949292,-0.0419729280411891,3.63119427752477 +00:01:30.3593,69.7602805024683,-0.519428084836521,-1.52772966128389,-0.0419440881321584,3.58362992575696 +00:01:30.3914,69.7602881535567,-0.510099763611334,-1.50029342238628,-0.0418895782557846,3.5361043414225 +00:01:30.4235,69.7602956706924,-0.501231809860648,-1.4742112054725,-0.041867171005485,3.48861511001327 +00:01:30.4556,69.7603030598935,-0.492886891922309,-1.44966732918326,-0.041884485723239,3.44112839885698 +00:01:30.5000,69.7603130601191,-0.481485600533354,-1.41613411921575,-0.0419200964229007,3.37551716865005 +00:01:30.5018,69.7603134776541,-0.480900978787911,-1.41441464349386,-0.0419133413444936,3.3727426456463 +00:01:30.5037,69.7603138945883,-0.480093244283076,-1.41203895377375,-0.0418884431602101,3.36996915251459 +00:01:30.5061,69.7603144259055,-0.478657605887709,-1.40781648790503,-0.041823709593768,3.36643028336566 +00:01:30.5085,69.7603149553914,-0.476784072836656,-1.4023060965784,-0.0417232203396697,3.36289838385958 +00:01:30.5109,69.7603154825915,-0.474518643267637,-1.39564306843423,-0.0415907480143445,3.3593762820381 +00:01:30.5159,69.7603165693227,-0.468828395334319,-1.37890704510094,-0.0412356402258315,3.3520976077074 +00:01:30.5239,69.7603182954945,-0.45768107491652,-1.346120808578,-0.0405057625152006,3.34047990364513 +00:01:30.5320,69.7603199780134,-0.445206148069232,-1.30942984726245,-0.0396741693442634,3.32908176978713 +00:01:30.5400,69.7603216145158,-0.432704365936686,-1.27265989981378,-0.0388456797739935,3.31791637000308 +00:01:30.5481,69.7603232068369,-0.421286956506177,-1.2390792838417,-0.0381049383870709,3.30697177036264 +00:01:30.5561,69.7603247604038,-0.411779744156181,-1.211116894577,-0.0375112623825734,3.29621559425885 +00:01:30.5642,69.7603262831088,-0.404670069347231,-1.19020608631539,-0.0370976711030846,3.28560211955087 +00:01:30.5751,69.76032831095,-0.39901564362425,-1.17357542242426,-0.0368325843696672,3.2713752659148 +00:01:30.5860,69.7603303201466,-0.397368117698163,-1.16872975793577,-0.036866498204787,3.25719417251808 +00:01:30.5968,69.7603323276712,-0.398620908639187,-1.17241443717408,-0.0371228143109785,3.24296088288301 +00:01:30.6077,69.7603343446542,-0.401407966250567,-1.18061166544285,-0.0375050429309023,3.22860872665771 +00:01:30.6186,69.7603363756862,-0.404433873270994,-1.18951139197351,-0.0379173917866384,3.21410721460597 +00:01:30.6295,69.7603384196596,-0.406702799559409,-1.1961847045865,-0.0382812498538461,3.19945895753081 +00:01:30.6404,69.7603404714658,-0.407617589803944,-1.19887526412925,-0.0385449251348966,3.18469142515114 +00:01:30.6513,69.7603425239429,-0.406972442938043,-1.19697777334719,-0.0386863638116865,3.1698462951657 +00:01:30.6664,69.7603453610851,-0.403819751451383,-1.1877051513276,-0.0386986338091295,3.14918821566097 +00:01:30.6815,69.7603481704263,-0.398866797944904,-1.17313764101442,-0.0385586240201007,3.12856096560333 +00:01:30.6967,69.7603509434169,-0.393196913113996,-1.15646150915881,-0.0383539638611096,3.108020528191 +00:01:30.7118,69.7603536782262,-0.387773630037379,-1.14051067658053,-0.0381655029588105,3.0875808167353 +00:01:30.7269,69.7603563783717,-0.383201939187608,-1.12706452702238,-0.0380458086849778,3.06722114955402 +00:01:30.7420,69.7603590500767,-0.379649240574386,-1.11661541345408,-0.0380116099602056,3.04690239276155 +00:01:30.7629,69.7603626935875,-0.375952045185816,-1.10574130937005,-0.0380687367002508,3.01891868166392 +00:01:30.7837,69.7603663033156,-0.372818206561951,-1.09652413694691,-0.038179263729811,2.99087865728642 +00:01:30.8045,69.7603698808547,-0.369445880128304,-1.08660552978913,-0.0382728437402513,2.96276914196138 +00:01:30.8253,69.7603734225465,-0.365447016774998,-1.07484416698529,-0.0383118131744402,2.93461331724612 +00:01:30.8528,69.7603780231474,-0.359397651453926,-1.05705191604096,-0.0382903197052398,2.8975239943827 +00:01:30.8802,69.7603825458438,-0.353044202195942,-1.0383653005763,-0.0382374865304679,2.86046511434163 +00:01:30.9076,69.7603869900288,-0.346913825435447,-1.02033478069249,-0.0382037736983557,2.82344270646618 +00:01:30.9350,69.7603913589263,-0.341161581066136,-1.0034164149004,-0.0382067662012106,2.78643375131575 +00:01:30.9815,69.7603985982945,-0.331706269561462,-0.975606675180771,-0.0382435468592349,2.72368987375342 +00:01:31.0000,69.7604014138975,-0.327963662703181,-0.964599007950532,-0.0382601386347635,2.69878086748191 +00:01:31.0015,69.7604016565559,-0.327580544324518,-0.96347218918976,-0.0382552205081933,2.69662029749954 +00:01:31.0031,69.7604018988843,-0.327075546495018,-0.961986901455936,-0.0382369650195913,2.69446039261331 +00:01:31.0054,69.7604022381997,-0.326100125214416,-0.959118015336517,-0.0381820784545021,2.69143206539685 +00:01:31.0076,69.7604025763416,-0.324817741248199,-0.95534629778882,-0.0380934572300588,2.68840943017235 +00:01:31.0099,69.76040291301,-0.323254529500431,-0.950748616177739,-0.0379740082742844,2.68539499994601 +00:01:31.0137,69.7604034854374,-0.320036174049594,-0.941282864851747,-0.0377103809971057,2.68025751586832 +00:01:31.0210,69.7604045440679,-0.312630266785549,-0.919500784663378,-0.0370696845999757,2.6707119808066 +00:01:31.0282,69.7604055760559,-0.304032086790272,-0.894212019971389,-0.0363072820456006,2.66134423434722 +00:01:31.0354,69.7604065788533,-0.295016171939973,-0.867694623352861,-0.0355093226721497,2.65217324393749 +00:01:31.0427,69.7604075522014,-0.286295841636932,-0.842046593049801,-0.0347497373844108,2.64319925629241 +00:01:31.0499,69.7604084980212,-0.278469562181686,-0.819028124063783,-0.0340858868410038,2.63440582703375 +00:01:31.0571,69.7604094199838,-0.271979474111664,-0.799939629740187,-0.0335569829733074,2.62576402922837 +00:01:31.0659,69.7604105125787,-0.266262739220573,-0.783125703589921,-0.0331259119439976,2.61544008646562 +00:01:31.0746,69.7604115868511,-0.262940665565204,-0.773354898721189,-0.0329251817435737,2.60521393600152 +00:01:31.0834,69.7604126518705,-0.261773986557739,-0.769923489875702,-0.0329323335722039,2.59501879763182 +00:01:31.0922,69.7604137153403,-0.262285437154124,-0.771427756335658,-0.0331051305843008,2.58479730332499 +00:01:31.1009,69.7604147828318,-0.263875868373873,-0.776105495217273,-0.0333901052434784,2.574506619365 +00:01:31.1097,69.7604158575101,-0.265938786397358,-0.782172901168701,-0.0337311352202893,2.56412065805756 +00:01:31.1185,69.7604169402684,-0.267947407495477,-0.788080610280813,-0.0340766742968878,2.55362982173478 +00:01:31.1272,69.7604180301404,-0.269505536581026,-0.792663342885371,-0.0343849751337108,2.54303883425551 +00:01:31.1378,69.7604193473126,-0.27043284094637,-0.795390708665795,-0.0346655429947583,2.53018800504518 +00:01:31.1506,69.7604209497664,-0.270025591036953,-0.794192914814568,-0.0348497521642118,2.51446337111638 +00:01:31.1634,69.7604225454276,-0.268103444607214,-0.788539542962395,-0.0348710203003173,2.49869171130017 +00:01:31.1762,69.7604241267026,-0.265075074116776,-0.779632570931695,-0.0347681777290168,2.48293626764222 +00:01:31.1890,69.7604256886454,-0.261474479756163,-0.769042587518126,-0.0345978210636112,2.46723989881903 +00:01:31.2018,69.7604272293492,-0.257819672201968,-0.758293153535201,-0.034417249695646,2.45162048399547 +00:01:31.2147,69.7604287495602,-0.254503333697759,-0.748539216758115,-0.0342711288547578,2.43607332107431 +00:01:31.2275,69.7604302517931,-0.251734908273442,-0.740396789039535,-0.0341844811827458,2.42057811981983 +00:01:31.2457,69.7604323658395,-0.24872144922782,-0.731533674199471,-0.0341655836791941,2.39855485342204 +00:01:31.2640,69.7604344572508,-0.246444471356036,-0.72483668045893,-0.0342337569779854,2.37651797066089 +00:01:31.2822,69.7604365299634,-0.244405984746161,-0.718841131606357,-0.0343342140632318,2.35443079836834 +00:01:31.3004,69.7604385843665,-0.242190960971839,-0.712326355799528,-0.0344175853510322,2.33228761779756 +00:01:31.3187,69.7604406183532,-0.239599379010584,-0.704704055913481,-0.0344570944487077,2.31010619075754 +00:01:31.3442,69.7604434242481,-0.235438337005167,-0.692465697074022,-0.0344453735122938,2.27905924155843 +00:01:31.3697,69.7604461798647,-0.231011831944351,-0.679446564542209,-0.0343970450865791,2.24803535416537 +00:01:31.3953,69.7604488842007,-0.226678899414928,-0.666702645338024,-0.0343581879517473,2.21704612554171 +00:01:31.4208,69.7604515389385,-0.222590525676431,-0.654678016695385,-0.0343511372386893,2.18607573336773 +00:01:31.4586,69.7604553911821,-0.216781431926946,-0.63759244684396,-0.0343779046389186,2.14010926363723 +00:01:31.5000,69.7604594759211,-0.210428355762993,-0.618906928714687,-0.0344081213950459,2.08993811034387 +00:01:31.5014,69.7604596147019,-0.210177119917621,-0.61816799975771,-0.0344042622124745,2.08820611197968 +00:01:31.5028,69.7604597532954,-0.209856759567256,-0.617225763433106,-0.0343896211909542,2.08647456405779 +00:01:31.5049,69.760459959054,-0.209209509575373,-0.615322086986392,-0.0343411478824384,2.08390029730425 +00:01:31.5070,69.7604601640761,-0.208358291594344,-0.612818504689248,-0.0342607110707923,2.08133086819324 +00:01:31.5092,69.7604603681717,-0.207317209421089,-0.609756498297321,-0.0341505854837204,2.07876854357845 +00:01:31.5123,69.7604606723643,-0.205448536462075,-0.604260401359043,-0.0339378353274664,2.07494075831364 +00:01:31.5189,69.7604612878448,-0.200723728564284,-0.59036390754201,-0.0333670563585875,2.06716049352848 +00:01:31.5254,69.7604618876993,-0.195106547675408,-0.573842787280613,-0.032669238207582,2.05952612837757 +00:01:31.5320,69.7604624699692,-0.189023953956251,-0.555952805753681,-0.0319148163673693,2.05205781572957 +00:01:31.5385,69.7604630338552,-0.182893027413381,-0.537920668862884,-0.0311664980035913,2.04476179142204 +00:01:31.5451,69.7604635797608,-0.177095724286048,-0.520869777311905,-0.0304759177470688,2.03763114515922 +00:01:31.5516,69.7604641091597,-0.171953654745206,-0.505746043368253,-0.0298821765839246,2.03064835882443 +00:01:31.5582,69.7604646243734,-0.167704882798966,-0.493249655291078,-0.0294113511954461,2.02378830606709 +00:01:31.5667,69.7604652750666,-0.163744393199722,-0.481601156469772,-0.0290046098226111,2.01504229708281 +00:01:31.5751,69.7604659136522,-0.161525164985146,-0.475074014662194,-0.0288222798103883,2.00638445041019 +00:01:31.5836,69.7604665464732,-0.160861257991178,-0.473121347032876,-0.0288407256920435,1.99775217960812 +00:01:31.5921,69.7604671788916,-0.161400414435209,-0.474707101280026,-0.0290189376657109,1.98909188504626 +00:01:31.6006,69.7604678147613,-0.162707451703701,-0.478551328540298,-0.0293060238791176,1.98036347870867 +00:01:31.6090,69.7604684562548,-0.164346611273771,-0.483372386099327,-0.0296488009514237,1.97154227803669 +00:01:31.6175,69.7604691039721,-0.165942939873645,-0.488067470216604,-0.0299982260907625,1.96261875698526 +00:01:31.6260,69.7604697572367,-0.167216620486923,-0.491813589667421,-0.0303140937013076,1.953596645572 +00:01:31.6345,69.7604704144794,-0.167992832112216,-0.494096565035929,-0.0305678098529984,1.9444899198342 +00:01:31.6453,69.7604712616725,-0.168145503256664,-0.494545597813717,-0.030778267549703,1.93269398520711 +00:01:31.6598,69.7604723793944,-0.167018012312702,-0.491229447978536,-0.030862210135746,1.91701052797495 +00:01:31.6714,69.7604732738908,-0.165228994770816,-0.485967631678872,-0.0307940528657158,1.90434738439452 +00:01:31.6830,69.7604741576843,-0.162972274563932,-0.479330219305682,-0.0306497338162853,1.89172570593833 +00:01:31.6947,69.7604750290413,-0.160557097160025,-0.472226756353015,-0.0304764269952289,1.87916751769487 +00:01:31.7063,69.7604758877815,-0.15824615728363,-0.465429874363619,-0.0303154962032381,1.86667660394954 +00:01:31.7179,69.760476734897,-0.156216416445075,-0.459460048367867,-0.0301957043025931,1.85424251194708 +00:01:31.7328,69.7604778023066,-0.154140027308777,-0.453353021496402,-0.0301218706560937,1.83841883482956 +00:01:31.7524,69.7604791961848,-0.152113942197472,-0.447393947639623,-0.0301402391681329,1.81749830011269 +00:01:31.7721,69.7604805732895,-0.150532521828166,-0.442742711259311,-0.0302365307288557,1.79654193557751 +00:01:31.7917,69.7604819356513,-0.148967168792218,-0.438138731741816,-0.0303425721245691,1.77552058115353 +00:01:31.8114,69.7604832823666,-0.147144014843742,-0.4327765142463,-0.0304091963044045,1.75444257118806 +00:01:31.8311,69.7604846110467,-0.14500326163441,-0.426480181277676,-0.0304209567867031,1.73333783515166 +00:01:31.8580,69.760486402624,-0.141766964853908,-0.416961661335023,-0.0303811036470329,1.70436065812602 +00:01:31.8850,69.7604881538885,-0.138484850496819,-0.407308383814172,-0.030329144832077,1.6754216134877 +00:01:31.9120,69.7604898653689,-0.135357820837124,-0.398111237756248,-0.0303061403672128,1.64651412045635 +00:01:31.9390,69.7604915387408,-0.132390935567189,-0.389385104609379,-0.0303177406553907,1.61761195440438 +00:01:31.9758,69.7604937612279,-0.128391705975218,-0.377622664632995,-0.0303502547161108,1.57817045194225 +00:01:32.0000,69.7604951790104,-0.125728960435867,-0.369791060105492,-0.0303660575003623,1.55232952993164 +00:01:32.0012,69.760495249788,-0.12557928986039,-0.369350852530559,-0.0303632039060635,1.55102483459887 +00:01:32.0024,69.7604953204717,-0.125398162537255,-0.368818125109572,-0.0303525826362234,1.54972043622796 +00:01:32.0040,69.760495414973,-0.12508736786284,-0.367904023125999,-0.0303214549925068,1.54797428295645 +00:01:32.0056,69.7604955092085,-0.124695023728263,-0.366750069789009,-0.0302700645689062,1.54623051267703 +00:01:32.0073,69.7604956031188,-0.124223882233736,-0.365364359510989,-0.0301991189877467,1.54449025186924 +00:01:32.0097,69.7604957414934,-0.123395610339149,-0.362928265703381,-0.030061913981148,1.54192143743912 +00:01:32.0158,69.7604960855172,-0.120751032852945,-0.35515009662631,-0.0295828345593545,1.53551024574893 +00:01:32.0219,69.7604964211519,-0.117444401663073,-0.345424710773744,-0.0289560519516993,1.52921771373178 +00:01:32.0280,69.7604967469111,-0.113692190877203,-0.334388796697657,-0.0282443517179606,1.52306749916028 +00:01:32.0340,69.7604970618518,-0.109720160900396,-0.322706355589399,-0.0275054076062474,1.51707194159144 +00:01:32.0401,69.7604973656647,-0.105756406151204,-0.311048253385893,-0.0267889564182248,1.51123194220786 +00:01:32.0462,69.7604976586721,-0.102018599778359,-0.300054705230468,-0.0261354670460335,1.50553859212378 +00:01:32.0523,69.7604979417697,-0.098696851501562,-0.290284857357535,-0.0255753924285388,1.49997529116033 +00:01:32.0584,69.7604982163239,-0.095937010441351,-0.282167677768679,-0.0251289374308995,1.49451996696505 +00:01:32.0663,69.7604985637093,-0.0933263500114153,-0.274489264739457,-0.0247337056719909,1.48754064548353 +00:01:32.0743,69.7604989036011,-0.0918422499380757,-0.270124264523752,-0.0245445240886668,1.48064307051789 +00:01:32.0822,69.7604992398681,-0.0913819514294678,-0.268770445380788,-0.0245417697444454,1.47377317963259 +00:01:32.0901,69.760499575847,-0.0917341532310471,-0.269806333032491,-0.024691367724261,1.46688384794672 +00:01:32.0980,69.7604999140132,-0.0926290517324446,-0.272438387448367,-0.0249504474307794,1.45993854409607 +00:01:32.1059,69.7605002558566,-0.093790176650324,-0.275853460736247,-0.0252731953437477,1.45291302895778 +00:01:32.1139,69.760500601925,-0.0949741806217236,-0.27933582535801,-0.0256159693672271,1.4457954749694 +00:01:32.1218,69.7605009519821,-0.0959941044481705,-0.282335601318149,-0.0259412363837966,1.43858533059873 +00:01:32.1297,69.7605013052236,-0.096726941743574,-0.284491005128159,-0.0262201610657153,1.43129128082934 +00:01:32.1376,69.7605016605005,-0.0971097035240718,-0.285616775070799,-0.0264338475374801,1.42392867274102 +00:01:32.1485,69.7605021514055,-0.097049234953436,-0.285438926333635,-0.0266075171141314,1.41369699576967 +00:01:32.1595,69.760502640529,-0.0963911295653174,-0.283503322250934,-0.0266483947293641,1.40342374701395 +00:01:32.1704,69.7605031252617,-0.095278032493368,-0.280229507333435,-0.0265813956255151,1.39315426047277 +00:01:32.1813,69.7605036037475,-0.0938848931280136,-0.276132038611805,-0.0264439897838686,1.38292263426593 +00:01:32.1923,69.7605040750051,-0.0923881890815953,-0.271729967887045,-0.0262771676893459,1.37274819661262 +00:01:32.2032,69.7605045388742,-0.0909392549577915,-0.267468396934681,-0.0261174431116529,1.36263555808466 +00:01:32.2141,69.7605049958423,-0.0896448513958462,-0.263661327634842,-0.0259914563240705,1.35257727775482 +00:01:32.2275,69.7605055473647,-0.0883429422397285,-0.259832183058025,-0.0259031062645175,1.34031161415672 +00:01:32.2455,69.7605062784044,-0.0870277464317348,-0.255963960093338,-0.0258917530866533,1.32384297868133 +00:01:32.2635,69.7605069996277,-0.0860253855309641,-0.253015839796953,-0.0259655874813906,1.30735694837295 +00:01:32.2815,69.7605077125793,-0.0850958836610079,-0.25028201076767,-0.0260686641996996,1.29081870355234 +00:01:32.2995,69.7605084171872,-0.0840578950524341,-0.247229103095394,-0.0261520695557777,1.27422428174089 +00:01:32.3175,69.7605091123484,-0.0828373803833893,-0.243639354068792,-0.0261901272806472,1.25759247839215 +00:01:32.3401,69.7605099692081,-0.0810933704790515,-0.238509913173681,-0.0261783804757255,1.23671110563074 +00:01:32.3627,69.7605108074096,-0.0792396924949981,-0.233057919102936,-0.0261328606850838,1.21584962232777 +00:01:32.3853,69.760511626425,-0.0773972009355571,-0.22763882628105,-0.0260911479939665,1.19501960449047 +00:01:32.4078,69.7605124265665,-0.0756205666761954,-0.222413431400575,-0.0260751059754664,1.17421100826693 +00:01:32.4379,69.760513461403,-0.0733262259138872,-0.215665370334962,-0.0260894297309952,1.14656314903458 +00:01:32.4679,69.7605144641241,-0.0710181337291487,-0.208876863909261,-0.0261173384904309,1.11889610237936 +00:01:32.5000,69.760515499831,-0.0684656359607636,-0.201369517531658,-0.0261340526896595,1.08929781302214 +00:01:32.5010,69.7605155340236,-0.0683731190814819,-0.201097409063182,-0.0261317397874577,1.08830161613967 +00:01:32.5021,69.7605155681656,-0.0682686894016053,-0.200790262945898,-0.0261233303834879,1.08730563420957 +00:01:32.5036,69.7605156158923,-0.0680940010237233,-0.200276473599186,-0.0260968908314489,1.08591144518476 +00:01:32.5051,69.760515663484,-0.0678841667566074,-0.199659313990022,-0.0260522400221235,1.08451916474931 +00:01:32.5066,69.7605157109168,-0.0676397258307421,-0.198940370090418,-0.0259896935625906,1.08312973855241 +00:01:32.5087,69.7605157744757,-0.0672600408631412,-0.197823649597474,-0.0258796773735368,1.08126554629767 +00:01:32.5130,69.7605159091581,-0.0662771023032367,-0.194932653833049,-0.0255609841473482,1.07730818622866 +00:01:32.5193,69.7605160974612,-0.0645257180585063,-0.189781523701489,-0.024954033030426,1.07176127794072 +00:01:32.5255,69.7605162802388,-0.0624299087159597,-0.183617378576352,-0.0242267496706781,1.0663597172648 +00:01:32.5317,69.7605164566695,-0.0600935234167577,-0.176745657108111,-0.0234456892668329,1.06112219259563 +00:01:32.5379,69.7605166262509,-0.0576472165875678,-0.169550637022258,-0.0226697824135062,1.05605445849257 +00:01:32.5442,69.7605167888808,-0.0552396132167254,-0.162469450637428,-0.021947931460524,1.05115039584634 +00:01:32.5504,69.7605169448832,-0.0530200675256881,-0.155941375075553,-0.0213178597782895,1.04639426807575 +00:01:32.5566,69.7605170949804,-0.0511185408248649,-0.150348649484897,-0.0208056453298269,1.04176327871645 +00:01:32.5628,69.760517240212,-0.0496283958440506,-0.14596587012956,-0.0204259101001737,1.03723013512551 +00:01:32.5690,69.7605173818169,-0.0485961405511217,-0.142929825150358,-0.0201826479777618,1.03276547594421 +00:01:32.5753,69.7605175210987,-0.0480196511203415,-0.141234268001004,-0.0200705880004159,1.02834005007738 +00:01:32.5815,69.7605176592954,-0.047854120177015,-0.140747412285338,-0.0200769377571711,1.02392655517862 +00:01:32.5877,69.7605177974745,-0.0480234347544969,-0.141245396336756,-0.0201833395096624,1.01950107281211 +00:01:32.5939,69.7605179364632,-0.048434040348682,-0.142453059849065,-0.0203678818111101,1.01504407075985 +00:01:32.6002,69.7605180768167,-0.048988493624133,-0.144083804776862,-0.0206070302741036,1.01054097465212 +00:01:32.6064,69.7605182188228,-0.0495966027410151,-0.145872361002986,-0.0208773673719908,1.00598233814336 +00:01:32.6126,69.7605183625323,-0.0501830046856037,-0.147597072604717,-0.0211570600826135,1.00136366191191 +00:01:32.6188,69.7605185078063,-0.0506909622205965,-0.149091065354695,-0.0214270037469586,0.996684926393599 +00:01:32.6267,69.7605186930699,-0.0511604933087181,-0.150472039143289,-0.0217289339641767,0.990695864697368 +00:01:32.6345,69.7605188796376,-0.0514126138415574,-0.151213570122228,-0.0219697662665304,0.984631957295664 +00:01:32.6444,69.7605191146488,-0.0514174722938119,-0.151227859687682,-0.0221683858494805,0.976935964884305 +00:01:32.6564,69.7605193987062,-0.051023485639748,-0.150069075411023,-0.0222564464675541,0.967538301800092 +00:01:32.6663,69.7605196299255,-0.0504453263006206,-0.148368606766531,-0.0222191629174861,0.959807482863464 +00:01:32.6761,69.7605198582053,-0.0497172344710173,-0.146227160208874,-0.0221113754913771,0.952100725186017 +00:01:32.6860,69.7605200830232,-0.0489145449164617,-0.143866308577829,-0.021964562676198,0.944437261893551 +00:01:32.6958,69.7605203041878,-0.0481043375450514,-0.141483345720739,-0.0218090841297369,0.936825482109235 +00:01:32.7056,69.7605205217798,-0.0473394768065478,-0.139233755313376,-0.0216698907220378,0.929264258994847 +00:01:32.7155,69.7605207360756,-0.0466539312928344,-0.137217444978925,-0.0215640313802499,0.921745234671 +00:01:32.7286,69.7605210174879,-0.045882179852023,-0.134947587800068,-0.0214875835703784,0.911758037287349 +00:01:32.7454,69.7605213700532,-0.0450898054808482,-0.132617074943671,-0.0214861562052311,0.899053099915291 +00:01:32.7621,69.7605217168543,-0.0444148239727117,-0.130631835213858,-0.0215581376522315,0.886329453887885 +00:01:32.7788,69.7605220583645,-0.0437478755687454,-0.128670222261016,-0.0216559265704104,0.873558783963303 +00:01:32.7956,69.7605223943976,-0.0430147203753886,-0.126513883457025,-0.0217379002554728,0.860737404522917 +00:01:32.8123,69.7605227243883,-0.0421901832544972,-0.124088774277933,-0.0217807645486999,0.847880172741131 +00:01:32.8328,69.7605231196896,-0.0410762421371503,-0.120812476873972,-0.0217794498670818,0.832105147589735 +00:01:32.8533,69.7605235041788,-0.039901255468278,-0.11735663373023,-0.0217422190665267,0.816342115359601 +00:01:32.8738,69.7605238774617,-0.0387070078554367,-0.113844140751284,-0.0217001021348751,0.800605303088986 +00:01:32.8944,69.760524239426,-0.0375143114381282,-0.110336210112142,-0.0216756164936419,0.784891045147742 +00:01:32.9201,69.7605246767221,-0.0360139080055659,-0.1059232588399,-0.0216772319423218,0.765219474848868 +00:01:32.9539,69.7605252252247,-0.0339765825316536,-0.0999311250930988,-0.0217053610682303,0.739276876968638 +00:01:32.9878,69.7605257409479,-0.0318398437445928,-0.0936465992488023,-0.021729756983087,0.713307422369709 +00:01:33.0000,69.7605259181741,-0.0310464879216248,-0.0913131997694847,-0.0217337503637346,0.703964454533964 +00:01:33.0009,69.7605259316354,-0.0309846978298189,-0.0911314642053498,-0.0217320105261376,0.703244976634395 +00:01:33.0018,69.7605259450691,-0.0309225219150914,-0.090948593867916,-0.021725785427784,0.702525640272499 +00:01:33.0033,69.7605259662463,-0.0308232416822576,-0.0906565931831105,-0.0217022428066071,0.701389513962589 +00:01:33.0048,69.7605259873548,-0.0307227975083841,-0.0903611691423063,-0.021660627401686,0.700255107739919 +00:01:33.0063,69.7605260083941,-0.0306210951447285,-0.090062044543319,-0.0216009373016752,0.699123345777069 +00:01:33.0078,69.760526029363,-0.0305178392246606,-0.0897583506607663,-0.021524281008596,0.697995140595411 +00:01:33.0107,69.7605260715683,-0.0303021140558529,-0.0891238648701557,-0.0213240003962032,0.695727434969709 +00:01:33.0164,69.7605261507616,-0.0298493139440954,-0.0877920998355746,-0.0208109598171949,0.691498164766729 +00:01:33.0221,69.7605262286217,-0.0292995836817992,-0.0861752461229387,-0.0201658223299904,0.687384716423455 +00:01:33.0278,69.7605263048565,-0.0286206648962521,-0.0841784261654474,-0.019444242733122,0.683407194289802 +00:01:33.0335,69.7605263791303,-0.0278095170464168,-0.0817926971953434,-0.0186973219894212,0.679576083673282 +00:01:33.0392,69.7605264511415,-0.0268952410227556,-0.0791036500669283,-0.017969450029588,0.67589232073458 +00:01:33.0449,69.7605265206964,-0.0259326701217891,-0.0762725591817327,-0.0172972923165138,0.672348609468777 +00:01:33.0506,69.7605265877606,-0.0249903761600347,-0.0735011063530432,-0.0167091901624614,0.668931076563544 +00:01:33.0563,69.7605266524765,-0.0241369207177024,-0.0709909432873599,-0.0162249266065642,0.665620998707374 +00:01:33.0619,69.7605267151481,-0.0234286874440595,-0.0689079042472339,-0.0158559042718612,0.662396510897009 +00:01:33.0676,69.7605267761997,-0.0229015732759294,-0.0673575684586158,-0.0156057227856997,0.659234228399713 +00:01:33.0733,69.7605268361176,-0.0225675142376909,-0.0663750418755614,-0.0154710888190009,0.656110717750837 +00:01:33.0790,69.7605268953909,-0.0224156269258677,-0.0659283144878461,-0.0154429674325347,0.653003762125251 +00:01:33.0847,69.7605269544571,-0.0224168867278854,-0.0659320197878983,-0.0155078790584852,0.649893382659622 +00:01:33.0904,69.7605270136643,-0.02253082513905,-0.0662671327619119,-0.0156492517229817,0.646762595321672 +00:01:33.0961,69.7605270732501,-0.022712689430682,-0.0668020277373001,-0.0158487481096712,0.643597899999328 +00:01:33.1018,69.7605271333383,-0.0229197750441889,-0.0674111030711438,-0.0160874998490054,0.640389513369234 +00:01:33.1075,69.76052719395,-0.0231160861565851,-0.0679884886958385,-0.0163471959286525,0.637131369240658 +00:01:33.1131,69.7605272550244,-0.0232749730242087,-0.0684558030123784,-0.0166109874155661,0.633820919207877 +00:01:33.1201,69.7605273305033,-0.0233941151475156,-0.0688062210221047,-0.0169180671519989,0.629683408763558 +00:01:33.1271,69.7605274062163,-0.0234210608287828,-0.0688854730258317,-0.0171883793974848,0.62547507301216 +00:01:33.1341,69.7605274818754,-0.0233589250214849,-0.0687027206514261,-0.0174070318035349,0.62120667995515 +00:01:33.1433,69.7605275810901,-0.0231621660822459,-0.0681240178889587,-0.0176029317424645,0.615511321535434 +00:01:33.1546,69.7605277004726,-0.0227970080292084,-0.0670500236153188,-0.0177016858448619,0.608517593412325 +00:01:33.1638,69.760527797134,-0.0224324357235514,-0.0659777521280924,-0.0176803810699203,0.602751053995667 +00:01:33.1730,69.7605278921777,-0.0220356027196712,-0.0648105962343272,-0.0175897616851806,0.597001838593352 +00:01:33.1823,69.7605279855003,-0.0216250660263561,-0.0636031353716356,-0.0174564666004402,0.591288353485348 +00:01:33.1915,69.7605280770707,-0.0212143446699255,-0.0623951313821339,-0.0173072010970375,0.585620206403653 +00:01:33.2007,69.7605281669091,-0.0208135658274935,-0.0612163700808633,-0.0171651501024605,0.57999894899585 +00:01:33.2100,69.7605282550711,-0.0204292708924171,-0.0600860908600503,-0.0170476570711402,0.574419591302724 +00:01:33.2216,69.7605283638181,-0.0199717894055897,-0.0587405570752638,-0.0169502766766493,0.567437567299124 +00:01:33.2367,69.7605285015346,-0.0194097296754685,-0.057087440221966,-0.0169096618941613,0.558401860716064 +00:01:33.2518,69.7605286353361,-0.0188576438717197,-0.0554636584462344,-0.0169475809703022,0.549367873513179 +00:01:33.2669,69.7605287651912,-0.0182870363183363,-0.0537854009362834,-0.0170300576221922,0.540303892303733 +00:01:33.2820,69.7605288909291,-0.0176826860882496,-0.0520079002595576,-0.0171200271986964,0.531195946923969 +00:01:33.2971,69.7605290123315,-0.0170459740238627,-0.0501352177172433,-0.0171889592453861,0.522046956801205 +00:01:33.3122,69.7605291292173,-0.0163880079661554,-0.0482000234298689,-0.0172229483225269,0.51287096234394 +00:01:33.3332,69.7605292836754,-0.0154593369629215,-0.0454686381262397,-0.0172182383351104,0.500131886567402 +00:01:33.3541,69.7605294290864,-0.0145208298483628,-0.04270832308342,-0.0171796195512794,0.487406780128338 +00:01:33.3751,69.7605295653021,-0.0135651493784755,-0.0398974981719867,-0.0171394837852158,0.47470815366312 +00:01:33.3960,69.76052969207,-0.01257641354077,-0.0369894515904999,-0.0171193998380191,0.462030287580579 +00:01:33.4216,69.7605298331369,-0.0113106696052721,-0.0332666753096237,-0.0171261191681592,0.446591713168842 +00:01:33.4530,69.7605299854686,-0.00966294420188574,-0.0284204241231933,-0.0171553528817093,0.427578945251542 +00:01:33.4844,69.7605301133025,-0.00793625817481492,-0.0233419358082792,-0.0171794005542725,0.408540254651346 +00:01:33.5000,69.7605301674259,-0.00705710010391658,-0.0207561767762252,-0.0171843501199576,0.399079862432129 +00:01:33.5008,69.7605301702235,-0.00701050300023598,-0.0206191264712823,-0.0171828921905355,0.398558690888922 +00:01:33.5017,69.760530173003,-0.00696912560067638,-0.0204974282372835,-0.0171776783651315,0.398037630984263 +00:01:33.5030,69.7605301774086,-0.00691978211990764,-0.0203523003526695,-0.0171574580704815,0.397207121286275 +00:01:33.5044,69.7605301817901,-0.00689293301725229,-0.0202733324036832,-0.0171212454342174,0.396377991112377 +00:01:33.5058,69.7605301861618,-0.00688883150695412,-0.0202612691381003,-0.0170687894983548,0.395551002048723 +00:01:33.5071,69.7605301905374,-0.006906006143848,-0.0203117827760235,-0.0170009098751812,0.394726916005935 +00:01:33.5096,69.7605301985588,-0.00698406501360793,-0.0205413676870822,-0.0168421266904947,0.393237502999077 +00:01:33.5149,69.7605302160733,-0.00729336151506871,-0.0214510632796138,-0.016382715690702,0.390138306440743 +00:01:33.5202,69.7605302344607,-0.00771064521285719,-0.0226783682731094,-0.0157909839235913,0.387136992709078 +00:01:33.5255,69.7605302538433,-0.00813035484942838,-0.0239128083806717,-0.0151147493381946,0.384252947923638 +00:01:33.5308,69.7605302741405,-0.00847365142537981,-0.0249225041922936,-0.0143986289246336,0.381497976403129 +00:01:33.5361,69.7605302951221,-0.00869613144028421,-0.0255768571773065,-0.0136822895516303,0.378876066225006 +00:01:33.5414,69.7605303164875,-0.00878665275131824,-0.0258430963274066,-0.0129996581901168,0.376384254682679 +00:01:33.5466,69.760530337938,-0.00876059412991098,-0.0257664533232676,-0.0123783846870477,0.374013787685268 +00:01:33.5519,69.7605303592305,-0.0086501362551815,-0.0254415772211221,-0.0118395088853785,0.371751353431474 +00:01:33.5572,69.760530380206,-0.0084939312213507,-0.0249821506510315,-0.0113973960952412,0.369580331055428 +00:01:33.5625,69.7605304007954,-0.00832812212823775,-0.0244944768477581,-0.0110599627284764,0.367482014053242 +00:01:33.5678,69.7605304210059,-0.00818005233090599,-0.0240589774438411,-0.0108291657469858,0.365436764804627 +00:01:33.5731,69.7605304408964,-0.00806481382670605,-0.0237200406667825,-0.0107017044315104,0.363425058370316 +00:01:33.5784,69.7605304605483,-0.00798556773858513,-0.0234869639370151,-0.0106698746092858,0.361428382467435 +00:01:33.5837,69.760530480039,-0.00793513954717012,-0.0233386457269709,-0.0107225152424509,0.359429970211021 +00:01:33.5889,69.7605304994209,-0.00789980952044906,-0.0232347338836737,-0.0108459908883276,0.357415353730066 +00:01:33.5942,69.760530518711,-0.0078632464349518,-0.0231271953969171,-0.0110251593661465,0.355372736501467 +00:01:33.5995,69.7605305378879,-0.00781014284208774,-0.0229710083590816,-0.0112442813561398,0.35329319105297 +00:01:33.6048,69.7605305568983,-0.00772893831817305,-0.0227321715240384,-0.0114878370863448,0.351170695985276 +00:01:33.6101,69.7605305756669,-0.00761335607556856,-0.0223922237516722,-0.0117412242170784,0.349002031932722 +00:01:33.6154,69.7605305941101,-0.00746274444405264,-0.0219492483648607,-0.0119913200232207,0.346786560079983 +00:01:33.6220,69.7605306166574,-0.00723165802747797,-0.0212695824337587,-0.0122823585473277,0.343944338650995 +00:01:33.6286,69.7605306384508,-0.00696858716432886,-0.0204958446009672,-0.0125341290744691,0.341038876468459 +00:01:33.6366,69.7605306635591,-0.00663810076122199,-0.0195238257683,-0.0127685614122432,0.337478580973891 +00:01:33.6462,69.7605306923237,-0.00625922133961805,-0.0184094745282884,-0.0129429072249245,0.333109663417525 +00:01:33.6559,69.7605307195371,-0.00593533892262059,-0.0174568791841782,-0.0130020718527647,0.328700866010752 +00:01:33.6655,69.7605307454576,-0.00567791762122589,-0.0166997577094879,-0.0129631875415617,0.324287822751344 +00:01:33.6751,69.7605307703506,-0.00547747236910592,-0.0161102128503115,-0.0128533316818851,0.319899064010659 +00:01:33.6848,69.7605307944191,-0.00531304910975004,-0.0156266150286766,-0.0127037721588355,0.315553394325737 +00:01:33.6944,69.7605308177729,-0.0051615570640514,-0.0151810501883865,-0.0125446235510141,0.311259319875031 +00:01:33.7040,69.7605308404291,-0.00500354635527699,-0.0147163128096382,-0.0124008039529096,0.307016084939131 +00:01:33.7137,69.7605308623307,-0.00482515141517635,-0.0141916218093422,-0.0122896231819621,0.302815800086014 +00:01:33.7233,69.7605308833698,-0.00461772379001681,-0.013581540558873,-0.0122199855310745,0.298646118022872 +00:01:33.7375,69.7605309123965,-0.00425430220955895,-0.0125126535575263,-0.0121914698260182,0.292540996562168 +00:01:33.7516,69.76053093881,-0.00382076452584206,-0.0112375427230649,-0.0122323609493447,0.286433589169894 +00:01:33.7658,69.7605309622159,-0.00333237349875497,-0.00980109852574992,-0.0123123496354406,0.280297731415256 +00:01:33.7799,69.7605309823353,-0.00281254160564068,-0.00827218119306084,-0.0123994260873212,0.27412176148362 +00:01:33.7941,69.7605309990548,-0.0022891915309986,-0.00673291626764295,-0.0124686624290808,0.267907815438745 +00:01:33.8082,69.7605310124182,-0.00178440531818736,-0.00524825093584519,-0.0125069717165148,0.261667403001014 +00:01:33.8271,69.7605310252803,-0.00115154373823099,-0.00338689334773819,-0.0125113748330885,0.253335717634595 +00:01:33.8460,69.7605310327668,-0.000555486254701432,-0.00163378310206303,-0.0124811447501119,0.245011302412267 +00:01:33.8648,69.7605310350286,3.7251847789084e-05,0.000109564258203188,-0.0124420892502488,0.236708040070412 +00:01:33.8837,69.7605310319688,0.000656773413652177,0.0019316865107417,-0.0124149554026069,0.228425474994608 +00:01:33.9026,69.7605310232856,0.00132172540963853,0.00388742767540744,-0.0124086353398005,0.220153669960805 +00:01:33.9316,69.7605309979567,0.00242729460869745,0.00713910179028661,-0.0124276493871862,0.207412315488215 +00:01:33.9606,69.7605309573704,0.00359754314859398,0.0105810092605705,-0.012456638680412,0.194649053599119 +00:01:33.9897,69.7605309009547,0.00479120788330775,0.0140917878920816,-0.0124739167554047,0.181864507456909 +00:01:34.0000,69.760530877211,0.0052138780404266,0.0153349354130194,-0.0124756113844192,0.177346117495095 +00:01:34.0007,69.7605308754141,0.00524204381136865,0.0154177759157901,-0.0124745339982922,0.177018999523985 +00:01:34.0014,69.7605308736086,0.0052643607104831,0.0154834138543621,-0.0124707546129502,0.176691953261952 +00:01:34.0026,69.7605308706699,0.00528061975171228,0.0155312345638596,-0.0124554889049794,0.176161877960802 +00:01:34.0038,69.7605308677302,0.00526923577981064,0.0154977522935607,-0.012427564626234,0.175632732926286 +00:01:34.0050,69.7605308648047,0.00522912866499089,0.0153797901911497,-0.0123864472744732,0.175105055078701 +00:01:34.0063,69.7605308619092,0.00516145432757751,0.0151807480222868,-0.0123325578006929,0.17457939310395 +00:01:34.0082,69.7605308573908,0.00500203059745086,0.0147118546983849,-0.0122222452223914,0.173745939657123 +00:01:34.0130,69.7605308470104,0.00438790298665076,0.0129055970195611,-0.0118381047309235,0.171708156088175 +00:01:34.0178,69.7605308382293,0.00355495075103322,0.0104557375030389,-0.0113247572571004,0.169746467547834 +00:01:34.0226,69.7605308313757,0.00262511180488203,0.00772091707318243,-0.0107207074347895,0.16787868108631 +00:01:34.0274,69.7605308265567,0.00170222545206691,0.00500654544725562,-0.0100624946384904,0.166117202471749 +00:01:34.0322,69.7605308236817,0.000862886070921814,0.00253790020859357,-0.00938338984613723,0.164468579426642 +00:01:34.0370,69.7605308225203,0.000154259086785886,0.000453703196429076,-0.00871288464703897,0.162933970316194 +00:01:34.0418,69.7605308227657,-0.000403748236863634,-0.00118749481430481,-0.0080762970744224,0.161509848784814 +00:01:34.0466,69.7605308240893,-0.000813380622429352,-0.00239229594832162,-0.00749443784504013,0.160188767778119 +00:01:34.0514,69.7605308261834,-0.00109228442676851,-0.00321260125520151,-0.00698340542712082,0.158960150512601 +00:01:34.0562,69.7605308287871,-0.00126639537876015,-0.00372469229047103,-0.00655455332321527,0.157811092309195 +00:01:34.0610,69.7605308316981,-0.00136355870412403,-0.00401046677683538,-0.0062146339301979,0.156727150527772 +00:01:34.0658,69.760530834772,-0.00140863559783362,-0.00414304587598124,-0.00596610029000973,0.155693096765707 +00:01:34.0706,69.7605308379124,-0.00142048206370543,-0.00417788842266304,-0.00580753716569862,0.154693607548718 +00:01:34.0754,69.7605308410565,-0.00141063202081426,-0.00414891770827724,-0.00573418959766971,0.153713874127157 +00:01:34.0802,69.7605308441604,-0.00138391579190927,-0.00407034056443902,-0.00573855677563785,0.152740117833839 +00:01:34.0850,69.7605308471847,-0.00133971785122884,-0.00394034662126131,-0.00581102028982201,0.151760002115735 +00:01:34.0898,69.7605308500859,-0.00127420522826653,-0.00374766243607802,-0.00594047818216606,0.150762937977485 +00:01:34.0946,69.7605308528112,-0.00118252949209513,-0.00347802791792684,-0.00611495941563857,0.149740283919731 +00:01:34.0994,69.7605308552985,-0.00106077583029015,-0.00311992891261809,-0.00632219720811396,0.148685445452933 +00:01:34.1042,69.7605308574798,-0.000907370556106542,-0.00266873692972512,-0.00655014389518403,0.147593882567482 +00:01:34.1090,69.7605308592871,-0.000723823998898933,-0.00212889411440863,-0.00678741437548151,0.146463036108481 +00:01:34.1138,69.7605308606593,-0.000514814160142072,-0.0015141592945355,-0.00702364955535808,0.145292185830499 +00:01:34.1186,69.7605308615483,-0.000287715983993457,-0.000846223482333697,-0.00724979537750684,0.144082254013587 +00:01:34.1247,69.7605308619358,1.06816819638509e-05,3.14167116583849e-05,-0.00750937025121674,0.142498108669353 +00:01:34.1308,69.7605308614962,0.000303442472622857,0.000892477860655461,-0.00772967737350116,0.140862643730294 +00:01:34.1383,69.7605308598935,0.000628670463568601,0.00184903077520177,-0.00793622956080229,0.138792577271091 +00:01:34.1475,69.7605308565486,0.000944788496997518,0.00277878969705152,-0.00808825270506996,0.136166952026051 +00:01:34.1568,69.7605308520998,0.00114592557895172,0.003370369349858,-0.00813132818388922,0.133509095272708 +00:01:34.1643,69.7605308480133,0.00122607991025099,0.00360611738309116,-0.00809722974243665,0.131366625079269 +00:01:34.1718,69.7605308437433,0.00124819892485146,0.00367117330838664,-0.00801688857882811,0.129238898619233 +00:01:34.1793,69.7605308394588,0.00123114419843151,0.00362101234832796,-0.00790595864459808,0.12713614302765 +00:01:34.1868,69.7605308352615,0.00119446896833418,0.0035131440245123,-0.00778003103516725,0.125064358738756 +00:01:34.1942,69.7605308311903,0.00115555566925914,0.00339869314487983,-0.00765323806670954,0.12302566042049 +00:01:34.2017,69.7605308272303,0.00112810175747633,0.00331794634551863,-0.00753724899227834,0.121018792884793 +00:01:34.2107,69.7605308225147,0.0011241175550504,0.00330622810308942,-0.00742415619247032,0.118635026151784 +00:01:34.2198,69.7605308177308,0.00115945589826914,0.00341016440667395,-0.00734715769847759,0.116281334438218 +00:01:34.2320,69.7605308108263,0.00127392220396401,0.00374683001165885,-0.00730282922141075,0.113125798869262 +00:01:34.2441,69.7605308030796,0.00145892191514399,0.00429094680924703,-0.00731781467894395,0.109976939951625 +00:01:34.2563,69.7605307941426,0.001699666732704,0.00499901980207059,-0.00737398345897438,0.106813705928613 +00:01:34.2685,69.7605307837646,0.00197434520791708,0.00580689767034437,-0.00744930059497307,0.103623165763052 +00:01:34.2807,69.7605307718232,0.00225848498733816,0.00664260290393575,-0.00752330049612999,0.100401299292758 +00:01:34.2929,69.7605307583238,0.00253036883698088,0.00744226128523788,-0.00758103173981587,0.0971515909804256 +00:01:34.3051,69.7605307433712,0.00277565941003554,0.00816370414716336,-0.0076148427399358,0.0938823625636504 +00:01:34.3223,69.7605307200588,0.00307293567439121,0.00903804610115062,-0.00762333252466286,0.0892429167606222 +00:01:34.3396,69.7605306945499,0.00332341628603251,0.00977475378244855,-0.00759952591325819,0.0846072999895014 +00:01:34.3568,69.7605306670804,0.0035571292660785,0.0104621449002309,-0.00756371490903555,0.0799884458701697 +00:01:34.3741,69.7605306376788,0.00380152948082729,0.0111809690612567,-0.00753397278704761,0.0753884626974031 +00:01:34.3913,69.7605306061975,0.00407486324951349,0.0119848919103338,-0.00752042519650065,0.0708011911867456 +00:01:34.4139,69.7605305615003,0.0044796937198986,0.0131755697644077,-0.00752672280944751,0.0648089736750544 +00:01:34.4364,69.7605305123997,0.00492217625189179,0.0144769889761523,-0.00754810305239331,0.0588068067978071 +00:01:34.4590,69.7605304586455,0.00537719516600902,0.0158152799000265,-0.00756947151839549,0.0527889704538861 +00:01:34.4815,69.7605304001965,0.00582562787010894,0.0171341996179675,-0.0075812401057716,0.0467586724016014 +00:01:34.5000,69.760530348955,0.00618347843127909,0.0181867012684679,-0.00758250183160714,0.041822574799264 +00:01:34.5005,69.7605303473114,0.00619311912277714,0.0182150562434622,-0.00758186247333408,0.0416689579591288 +00:01:34.5011,69.7605303456658,0.00620003656619391,0.0182354016652762,-0.00757978217675448,0.0415153773694526 +00:01:34.5022,69.7605303426157,0.00619949787766177,0.0182338172872405,-0.0075693754356389,0.0412310749535228 +00:01:34.5030,69.7605303401993,0.00618507287211134,0.0181913908003275,-0.00755424352446672,0.0410059475082031 +00:01:34.5038,69.7605303377911,0.00615689117305,0.0181085034501471,-0.00753234423577397,0.0407813709407456 +00:01:34.5047,69.7605303353967,0.00611504333055391,0.0179854215604527,-0.00750367512267702,0.0405575464274516 +00:01:34.5060,69.7605303317567,0.00602556616712441,0.0177222534327189,-0.00744700433136385,0.0402155288139197 +00:01:34.5083,69.7605303254298,0.005797861998886,0.0170525352908412,-0.00731080506375224,0.0396126573151274 +00:01:34.5120,69.7605303159292,0.00528526666369943,0.0155449019520571,-0.0070106283471223,0.0386745732192528 +00:01:34.5157,69.7605303074149,0.00464206219665165,0.013653124107799,-0.00662518423916182,0.0377813260249937 +00:01:34.5194,69.760530300054,0.00392918484307707,0.0115564260090502,-0.00617369634329553,0.0369426300138343 +00:01:34.5232,69.760530293922,0.00320146472710723,0.00941607272678597,-0.00567456179358851,0.0361660086761032 +00:01:34.5262,69.7605302897809,0.0026204935351884,0.00770733392702471,-0.00523771391437177,0.0355747966731825 +00:01:34.5293,69.7605302864346,0.00208068866704738,0.00611967255013936,-0.00478929912240563,0.0350314928603333 +00:01:34.5324,69.7605302838148,0.00159643974822387,0.00469541102418784,-0.00433776362697052,0.0345369059274862 +00:01:34.5354,69.7605302818364,0.00117675856805223,0.00346105461191834,-0.00389080452005242,0.0340909494254199 +00:01:34.5385,69.7605302804053,0.000825756285874474,0.00242869495845434,-0.00345537905306618,0.0336927493038158 +00:01:34.5423,69.7605302792402,0.000487615364453452,0.0014341628366278,-0.00294462875419212,0.0332652949230023 +00:01:34.5469,69.7605302784775,0.000205063436820559,0.000603127755354585,-0.00237513280367298,0.032833433806325 +00:01:34.5515,69.7605302781966,3.90329452993853e-05,0.00011480278029231,-0.00187313269353823,0.0324881882936203 +00:01:34.5552,69.7605302781836,-3.0795502821558e-05,-9.05750082987e-05,-0.00152163896897476,0.0322637657843587 +00:01:34.5589,69.7605302782584,-5.97728746935852e-05,-0.000175802572628192,-0.00122638203896596,0.0320819581471425 +00:01:34.5627,69.7605302783627,-6.32745099528387e-05,-0.00018610149986129,-0.000989351244039434,0.0319352149660298 +00:01:34.5657,69.7605302784462,-5.63655821836936e-05,-0.000165781124069687,-0.000840856268254383,0.0318377432985191 +00:01:34.5687,69.7605302785182,-4.65402995430639e-05,-0.000136883233950188,-0.000729343647060884,0.0317540776420703 +00:01:34.5717,69.7605302785772,-3.75685085524186e-05,-0.000110495613389466,-0.000653395530948356,0.0316803592937056 +00:01:34.5747,69.7605302786261,-3.18082847154485e-05,-9.35537785748487e-05,-0.00061119154140408,0.0316129231277588 +00:01:34.5777,69.7605302786699,-3.03188103531139e-05,-8.91729716268056e-05,-0.000600608268784196,0.0315483076607247 +00:01:34.5807,69.7605302787146,-3.30556803542507e-05,-9.7222589277208e-05,-0.000619280912460705,0.0314832845508583 +00:01:34.5837,69.7605302787652,-3.90627576211169e-05,-0.00011489046359152,-0.000664648283202531,0.0314148848570669 +00:01:34.5867,69.760530278825,-4.67785756082917e-05,-0.00013758404590674,-0.000733989116728914,0.0313404194153576 +00:01:34.5897,69.7605302788953,-5.42571532731527e-05,-0.000159579862568096,-0.000824451940447766,0.0312574946987496 +00:01:34.5927,69.760530278974,-5.94164080481322e-05,-0.000174754141318036,-0.000933080832771137,0.0311640253648074 +00:01:34.5957,69.7605302790567,-6.02511604334097e-05,-0.000177209295392382,-0.00105684224947576,0.0310582438893323 +00:01:34.5987,69.7605302791361,-5.50092655331435e-05,-0.000161791957450422,-0.00119265968072984,0.0309387068661128 +00:01:34.6026,69.7605302792163,-3.7397158863479e-05,-0.000109991643716115,-0.00137845613063912,0.0307641078361453 +00:01:34.6064,69.7605302792526,-6.01744332249128e-06,-1.76983627132097e-05,-0.00157272049803373,0.0305637902877132 +00:01:34.6112,69.7605302791983,5.17676677926414e-05,0.000152257846448945,-0.00181439759499778,0.0302807993303081 +00:01:34.6159,69.7605302789969,0.000128686769277024,0.0003784904978736,-0.00205039328918746,0.0299580484611965 +00:01:34.6217,69.7605302784933,0.000242118476553683,0.000712113166334362,-0.00231964618393439,0.0295101551443713 +00:01:34.6275,69.760530277674,0.000365689014655504,0.00107555592545736,-0.00255610029895026,0.0290105950120461 +00:01:34.6333,69.7605302765294,0.000486546050719469,0.00143101779623373,-0.00275134055492148,0.0284668750626234 +00:01:34.6407,69.7605302746551,0.000617672633108119,0.00181668421502388,-0.00293212625738597,0.0277294599710797 +00:01:34.6467,69.760530272823,0.000696397477786261,0.00204822787584195,-0.00302374223785465,0.0270942727052977 +00:01:34.6528,69.7605302708147,0.00074374272292544,0.00218747859683953,-0.00306592690728056,0.0264446828498715 +00:01:34.6588,69.7605302687169,0.000759937389463921,0.00223510996901153,-0.00306354165547291,0.0257907472568528 +00:01:34.6649,69.7605302666106,0.000748865046335617,0.00220254425392828,-0.00302345324508356,0.0251412172543615 +00:01:34.6709,69.7605302645631,0.000716678777506202,0.00210787875737118,-0.00295378362434006,0.0245032542957516 +00:01:34.6770,69.7605302626232,0.000670552528116183,0.00197221331798877,-0.00286322967411812,0.0238822407552394 +00:01:34.6830,69.7605302608205,0.00061749705056217,0.00181616779577109,-0.0027604570275165,0.0232817177658824 +00:01:34.6891,69.7605302591663,0.000563555868716982,0.0016575172609323,-0.00265358439152564,0.0227034431594636 +00:01:34.6951,69.7605302576568,0.000513387285306808,0.00150996260384355,-0.00254977374664823,0.0221475492779123 +00:01:34.7027,69.7605302559371,0.000460718516868199,0.00135505446137706,-0.00243301474005773,0.0214776656166183 +00:01:34.7120,69.7605302540415,0.000415942331637509,0.00122335979893385,-0.00232136522804491,0.02069603161661 +00:01:34.7213,69.7605302522901,0.000393594089422281,0.00115762967477142,-0.00224994796825753,0.0199442476457581 +00:01:34.7288,69.7605302509207,0.000391398554749135,0.0011511722198504,-0.00222279598396622,0.0193501352054599 +00:01:34.7364,69.7605302495365,0.000402409744247477,0.00118355807131611,-0.00222093902766417,0.0187599626580233 +00:01:34.7439,69.7605302480947,0.00042474588253912,0.00124925259570329,-0.00224011368928385,0.0181675879909523 +00:01:34.7514,69.7605302465596,0.000456348688873039,0.00134220202609717,-0.00227487855989394,0.0175681825661349 +00:01:34.7589,69.7605302449035,0.000494749322044507,0.00145514506483678,-0.00231935772913878,0.0169583994305273 +00:01:34.7664,69.7605302431076,0.000537209069095294,0.00158002667380969,-0.00236785338655192,0.0163364084146523 +00:01:34.7755,69.7605302407246,0.000589969851507127,0.0017352054456092,-0.00242463149296247,0.0155636779650296 +00:01:34.7873,69.7605302373441,0.000653069600192659,0.00192079294174312,-0.00248452669144501,0.0145449736974641 +00:01:34.7991,69.7605302336534,0.000705164473686789,0.00207401315790232,-0.00252337900099573,0.0135060480860498 +00:01:34.8116,69.7605302294556,0.00074512669015374,0.00219154908868747,-0.00253946189164863,0.0123868769627879 +00:01:34.8241,69.7605302250683,0.000770123694807161,0.0022650696906093,-0.00253320955149472,0.0112653055938809 +00:01:34.8367,69.760530220563,0.000784689516225014,0.00230791034183828,-0.00251226373035154,0.0101493671295951 +00:01:34.8492,69.7605302159824,0.000794859080207839,0.0023378208241407,-0.00248554237803234,0.00904358034034719 +00:01:34.8617,69.7605302113362,0.000806248868716967,0.00237132020210873,-0.0024609043451051,0.00794884812205333 +00:01:34.8770,69.7605302055377,0.000827597721304325,0.00243411094501272,-0.00244123866448323,0.00662246248544487 +00:01:34.8971,69.7605301976151,0.00087100761530827,0.00256178710384785,-0.00243559721545686,0.00488915075924436 +00:01:34.9137,69.76053019073,0.000918587388206054,0.00270172761237075,-0.0024449455322252,0.00345768397998477 +00:01:34.9304,69.7605301834589,0.000972510843960141,0.00286032601164747,-0.00246032263674409,0.00201943356538006 +00:01:34.9470,69.7605301757717,0.00102783060501774,0.00302303119122863,-0.00247519232017214,0.000572685204477106 +00:01:34.9535,69.7605301726256,0.00104889139764051,0.00308497469894269,-0.00247962512952329,5.16895715073069e-16 +00:01:34.9535,69.7605301726256,0.00104891641094659,0.00308504826748998,-0.00247961469662488,-7.90609328721822e-14 +00:01:34.9739,69.7605301621443,0.00110910664265547,0.00326207836075137,-0.00248533399910568,-0.00179164206568766 +00:01:35.0000,69.7605301478951,0.00118228198305531,0.00347729995016268,-0.00248636877110959,-0.00407755624905345 +00:01:35.0002,69.7605301477724,0.0011828730581964,0.00347903840645999,-0.00248632724941182,-0.00409722217065491 +00:01:35.0004,69.7605301476501,0.00118341761978148,0.00348064005818082,-0.00248623445272909,-0.00411688721330965 +00:01:35.0008,69.760530147439,0.00118412584869764,0.00348272308440483,-0.00248582214095484,-0.00415074708462182 +00:01:35.0017,69.7605301469254,0.00118392243500544,0.00348212480883952,-0.00248270500003498,-0.00423300717372892 +00:01:35.0025,69.7605301465262,0.00118159886420728,0.00347529077708025,-0.00247790329562894,-0.00429687629325477 +00:01:35.0032,69.7605301461281,0.00117705895936127,0.00346193811576843,-0.00247066347382829,-0.00436059024620645 +00:01:35.0039,69.760530145732,0.00117024004137432,0.00344188247463036,-0.00246090526733774,-0.00442408535692712 +00:01:35.0049,69.7605301452156,0.00115789342374414,0.00340556889336511,-0.00244430786020796,-0.0045070907976824 +00:01:35.0063,69.7605301444687,0.00113319144195493,0.00333291600574979,-0.00241248060104823,-0.00462790162475748 +00:01:35.0083,69.7605301434211,0.00108500572763257,0.00319119331656637,-0.00235178579295113,-0.00479963132468512 +00:01:35.0110,69.760530142109,0.00100197484570486,0.00294698484030841,-0.00224695415719391,-0.00502035520467412 +00:01:35.0138,69.7605301409112,0.000902661222357976,0.00265488594811169,-0.00211806723467705,-0.00522988156080246 +00:01:35.0165,69.760530139844,0.000793000726094299,0.00233235507674794,-0.00196895025580794,-0.00542610093410502 +00:01:35.0192,69.7605301389173,0.000678596376916259,0.00199587169681253,-0.00180327267177619,-0.00560723369047853 +00:01:35.0219,69.760530138134,0.000564489393651635,0.00166026292250481,-0.00162452121779454,-0.0057718471266543 +00:01:35.0246,69.760530137491,0.000455018763096391,0.00133829047969527,-0.00143600881574736,-0.00591884004353908 +00:01:35.0280,69.7605301368858,0.000333448270980935,0.000980730208767456,-0.00119866490451187,-0.00607256521585446 +00:01:35.0313,69.7605301364532,0.000228518543892165,0.00067211336438872,-0.000956787847012011,-0.00619836491473811 +00:01:35.0346,69.7605301361661,0.000143070790866108,0.000420796443723846,-0.000715225647104276,-0.00629599610229564 +00:01:35.0386,69.7605301359665,6.74107136406258e-05,0.00019826680482537,-0.000430485514753124,-0.00637691870888836 +00:01:35.0426,69.7605301358801,2.07800017775628e-05,6.11176522869494e-05,-0.000159493964342735,-0.00641872923513184 +00:01:35.0481,69.7605301358459,-2.42850239289096e-06,-7.14265409673813e-06,0.000180129754989506,-0.00641741816317676 +00:01:35.0536,69.7605301358295,9.21982281705056e-06,2.71171259325016e-05,0.000471305107046837,-0.00635497374539113 +00:01:35.0591,69.7605301357632,4.02575299868934e-05,0.000118404499961451,0.000706181769040022,-0.00624146983389457 +00:01:35.0634,69.7605301356554,6.86923831701302e-05,0.000202036421088618,0.000847954775352347,-0.00612362823745702 +00:01:35.0677,69.760530135494,9.45524185001421e-05,0.00027809534852983,0.000951928356804584,-0.00598708326290293 +00:01:35.0720,69.7605301352876,0.000113954003500229,0.000335158833824203,0.00101899903648959,-0.00583752781470161 +00:01:35.0763,69.7605301350511,0.000124771365880171,0.000366974605529914,0.00105116466789071,-0.0056803997191799 +00:01:35.0806,69.7605301348021,0.000126487377995201,0.000372021699985885,0.00105130531399644,-0.00552077350188632 +00:01:35.0849,69.7605301345577,0.000119895884119571,0.000352634953292856,0.00102299134472369,-0.00536324145711762 +00:01:35.0892,69.7605301343326,0.000106716594735572,0.000313872337457565,0.000970292809626668,-0.00521181936825378 +00:01:35.0936,69.7605301341378,8.91838347270539e-05,0.000262305396256041,0.000897592174682467,-0.00506988272738656 +00:01:35.0979,69.7605301339794,6.96626155559188e-05,0.000204890045752702,0.000809407599517634,-0.00494013187994117 +00:01:35.1022,69.7605301338595,5.03315041347081e-05,0.000148033835690318,0.000710232592874841,-0.00482458322643638 +00:01:35.1065,69.7605301337759,3.29555424431008e-05,9.69280660091199e-05,0.000604395796173742,-0.00472458336654856 +00:01:35.1108,69.7605301337236,1.87568754315446e-05,5.51672806810135e-05,0.000495942999376931,-0.00464084288432954 +00:01:35.1151,69.7605301336958,8.37757344681598e-06,2.46399219023999e-05,0.000388542297597705,-0.0045734863219981 +00:01:35.1207,69.7605301336825,7.06509522006088e-07,2.07796918237085e-06,0.000255754366116275,-0.0045093901706831 +00:01:35.1282,69.7605301336796,-8.89058247056277e-07,-2.61487719722434e-06,0.000100277051437108,-0.00446173707439415 +00:01:35.1372,69.7605301336679,4.94193091130245e-06,1.45350909155954e-05,-4.44731708571403e-05,-0.00445142726357625 +00:01:35.1435,69.7605301336463,1.03126705238654e-05,3.03313838937218e-05,-0.000113829686509026,-0.00446839398998212 +00:01:35.1497,69.7605301336111,1.45255430241115e-05,4.27221853650337e-05,-0.000156732450294374,-0.00449775550783952 +00:01:35.1560,69.760530133567,1.65490192807105e-05,4.86735861197367e-05,-0.000174618144495732,-0.00453383294420719 +00:01:35.1622,69.7605301335204,1.6192263060311e-05,4.76243031185619e-05,-0.00017033527279753,-0.00457146244843851 +00:01:35.1685,69.7605301334774,1.38966869797151e-05,4.08726087638681e-05,-0.000147673870670936,-0.00460619941128071 +00:01:35.1747,69.7605301334425,1.04490880201962e-05,3.07326118241064e-05,-0.000110975847035095,-0.00463448156190122 +00:01:35.1809,69.7605301334177,6.70149797368713e-06,1.97102881579033e-05,-6.47830056732668e-05,-0.00465371653070173 +00:01:35.1872,69.760530133403,3.35758275939559e-06,9.87524340998703e-06,-1.35258109334511e-05,-0.00466229459631824 +00:01:35.1934,69.7605301333966,8.54438941613064e-07,2.51305571062666e-06,3.87349939623056e-05,-0.00465953740700799 +00:01:35.1997,69.7605301333961,-6.60935806460212e-07,-1.94392884253004e-06,8.8505121973552e-05,-0.00464559615248706 +00:01:35.2084,69.7605301333995,-1.33306445721389e-06,-3.92077781533497e-06,0.000148671115125032,-0.00460917443427522 +00:01:35.2212,69.7605301334044,-6.78528136233766e-07,-1.99567098892284e-06,0.000208380314466123,-0.00453000254027387 +00:01:35.2299,69.7605301334061,-9.4824757481671e-08,-2.78896345534327e-07,0.000228701559643021,-0.004463137487918 +00:01:35.2387,69.7605301334063,1.26305108877368e-07,3.71485614345201e-07,0.000232625180143103,-0.00439246483474823 +00:01:35.2474,69.7605301334063,-5.13144714943589e-08,-1.50924916159879e-07,0.000222869730749756,-0.0043226144498239 +00:01:35.2561,69.7605301334074,-4.46970638548259e-07,-1.31461952514194e-06,0.000203260462375575,-0.00425718100457574 +00:01:35.2648,69.76053013341,-8.29620010541957e-07,-2.44005885453517e-06,0.000177994224008453,-0.00419854461724563 +00:01:35.2736,69.7605301334137,-1.04168769534673e-06,-3.06378733925508e-06,0.000151062819751046,-0.00414784370884184 +00:01:35.2823,69.7605301334178,-1.04517445976242e-06,-3.07404252871299e-06,0.000125830551434326,-0.00410509536917852 +00:01:35.2942,69.7605301334228,-8.31354940742477e-07,-2.44516159041905e-06,9.85767394015066e-05,-0.00405739667027517 +00:01:35.3089,69.7605301334275,-5.51270266653073e-07,-1.62138313721492e-06,7.96288176240744e-05,-0.00401059042821651 +00:01:35.3206,69.7605301334304,-4.86202618751145e-07,-1.43000770220925e-06,7.58583508534209e-05,-0.00397788876155373 +00:01:35.3324,69.7605301334334,-5.67898532258352e-07,-1.67028980075986e-06,8.03266165563383e-05,-0.00394516704995835 +00:01:35.3442,69.7605301334369,-7.09166056721422e-07,-2.08578251976889e-06,8.9812734802151e-05,-0.0039096780384149 +00:01:35.3559,69.7605301334411,-8.25784115742813e-07,-2.42877681100827e-06,0.000100902996671226,-0.0038700415903085 +00:01:35.3677,69.7605301334457,-8.82778378387749e-07,-2.59640699525809e-06,0.000110736976602857,-0.00382615566592928 +00:01:35.3844,69.7605301334524,-8.84782450757401e-07,-2.60230132575706e-06,0.000119022568401839,-0.00375882219252373 +00:01:35.4042,69.7605301334604,-8.4924634964091e-07,-2.4977833812968e-06,0.000119673463938842,-0.00367587220033234 +00:01:35.4241,69.760530133468,-8.0794267352853e-07,-2.37630198096626e-06,0.000112932763775989,-0.003594849829074 +00:01:35.4439,69.7605301334752,-7.53649994789622e-07,-2.21661763173418e-06,0.000103448455092889,-0.00351913998057296 +00:01:35.4638,69.7605301334818,-6.94230750585681e-07,-2.04185514878141e-06,9.54733658113855e-05,-0.00344924666198551 +00:01:35.4836,69.760530133488,-6.52264293818682e-07,-1.91842439358436e-06,9.11600939081713e-05,-0.00338354381951371 +00:01:35.5000,69.7605301334929,-6.3645732724202e-07,-1.87193331541771e-06,9.03609420647377e-05,-0.00333097453799396 +00:01:35.5223,69.7605301334995,-6.2572904326831e-07,-1.84037953902444e-06,9.12413126287463e-05,-0.00325925856805343 +00:01:35.5446,69.7605301335059,-6.1250195845425e-07,-1.80147634839485e-06,9.2188432914234e-05,-0.00318701848248242 +00:01:35.5728,69.7605301335136,-5.84594503414886e-07,-1.71939559827908e-06,9.11732115747136e-05,-0.00309594812017128 +00:01:35.6156,69.7605301335247,-5.3388891651318e-07,-1.57026151915641e-06,8.62055674190929e-05,-0.00296251291475321 +00:01:35.6584,69.7605301335347,-4.80873199733552e-07,-1.4143329403928e-06,8.06418077455168e-05,-0.00283648955207375 +00:01:35.7012,69.7605301335439,-4.37800260114724e-07,-1.28764782386684e-06,7.68430117176997e-05,-0.00271713621266203 +00:01:35.7836,69.7605301335595,-3.74846183644628e-07,-1.10248877542538e-06,7.16721080227589e-05,-0.00249998117150948 +00:01:35.8661,69.7605301335727,-3.15499820099489e-07,-9.27940647351438e-07,6.63184666905894e-05,-0.00229910539238068 +00:01:35.9486,69.7605301335838,-2.68267463626151e-07,-7.89021951841621e-07,6.06093235787055e-05,-0.00211446607757371 +00:01:36.0000,69.7605301335899,-2.41115548121419e-07,-7.09163376827703e-07,5.73729494127879e-05,-0.00200741820698714 +00:01:36.1000,69.7605301336,-1.9397125677262e-07,-5.70503696390058e-07,5.19634026868715e-05,-0.00181400712445646 +00:01:36.1999,69.7605301336082,-1.58316637234835e-07,-4.65637168337749e-07,4.70379341255088e-05,-0.00163902801118527 +00:01:36.2999,69.7605301336149,-1.29462786935342e-07,-3.80772902751004e-07,4.24515288351591e-05,-0.00148092647126237 +00:01:36.3999,69.7605301336203,-1.052526207024e-07,-3.09566531477647e-07,3.83352382402635e-05,-0.00133814277620656 +00:01:36.5000,69.7605301336248,-8.56019056456032e-08,-2.51770310722362e-07,3.46560930577794e-05,-0.00120912620772527 +00:01:36.6000,69.7605301336284,-6.98257077845205e-08,-2.05369728778002e-07,3.13199413004276e-05,-0.00109253059017231 +00:01:36.6999,69.7605301336313,-5.69223199681671e-08,-1.67418588141668e-07,2.82940689451656e-05,-0.000987180437911909 +00:01:36.7999,69.7605301336337,-4.63237722334298e-08,-1.36246388921852e-07,2.55645940323256e-05,-0.000891994571366262 +00:01:36.8999,69.7605301336357,-3.76982713283387e-08,-1.10877268612761e-07,2.31014746185167e-05,-0.000805985552661807 +00:01:37.0000,69.7605301336373,-3.06889819596556e-08,-9.02617116460459e-08,2.08741588902966e-05,-0.000728268122241912 +00:01:37.1000,69.7605301336385,-2.49690509141998e-08,-7.34383850417641e-08,1.88607641861527e-05,-0.000658045104022502 +00:01:37.1999,69.7605301336396,-2.0301103171574e-08,-5.97091269752175e-08,1.70421071719277e-05,-0.000594593794541724 +00:01:37.2999,69.7605301336405,-1.65004029717231e-08,-4.85305969756562e-08,1.53990268513626e-05,-0.00053726051968628 +00:01:37.3999,69.7605301336412,-1.34062800415093e-08,-3.94302354162038e-08,1.39141761877286e-05,-0.000485455430431854 +00:01:37.5000,69.7605301336417,-1.08855337728011e-08,-3.20162758023562e-08,1.25724513857448e-05,-0.000438645691701804 +00:01:37.6000,69.7605301336422,-8.83274492122021e-09,-2.59786615330006e-08,1.13601687198645e-05,-0.000396349588151555 +00:01:37.6999,69.7605301336426,-7.16231353322641e-09,-2.10656280389012e-08,1.02647895787752e-05,-0.000358131831723565 +00:01:37.7999,69.7605301336429,-5.80335202765127e-09,-1.70686824342684e-08,9.27500993637504e-06,-0.000323599188809788 +00:01:37.8999,69.7605301336431,-4.69798531502278e-09,-1.38176038677141e-08,8.38066782293032e-06,-0.000292396343105599 +00:01:38.0000,69.7605301336433,-3.79933781023858e-09,-1.11745229712899e-08,7.57256891840256e-06,-0.000264202213909514 +00:01:38.1000,69.7605301336435,-3.06916635516697e-09,-9.02695986813816e-09,6.84239027574041e-06,-0.000238726682583191 +00:01:38.1999,69.7605301336436,-2.47618002569425e-09,-7.28288242851251e-09,6.18261651940884e-06,-0.000215707612739653 +00:01:38.2999,69.7605301336437,-1.99487521086723e-09,-5.86728003196244e-09,5.58646124319632e-06,-0.000194908143034616 +00:01:38.3999,69.7605301336438,-1.6044898988914e-09,-4.71908793791587e-09,5.04779049698948e-06,-0.000176114249014935 +00:01:38.5000,69.7605301336438,-1.28809324008095e-09,-3.78850952964984e-09,4.56106061187967e-06,-0.000159132543981431 +00:01:38.6000,69.7605301336439,-1.03187663491427e-09,-3.0349312791596e-09,4.12126315613672e-06,-0.00014378828908931 +00:01:38.6999,69.7605301336439,-8.24590231289601e-10,-2.42526538614589e-09,3.72387294271595e-06,-0.00012992359433589 +00:01:38.7999,69.760530133644,-6.57071233191525e-10,-1.93256245056331e-09,3.36480088199367e-06,-0.000117395793971473 +00:01:38.8999,69.760530133644,-5.21855241286873e-10,-1.5348683567261e-09,3.04035209543957e-06,-0.000106075978788444 +00:01:39.0000,69.760530133644,-4.12863105671877e-10,-1.21430325197611e-09,2.74718806180843e-06,-9.58476696179107e-05 +00:01:39.1000,69.760530133644,-3.25146263827228e-10,-9.56312540668317e-10,2.48229219174835e-06,-8.66056186883136e-05 +00:01:39.1999,69.7605301336441,-2.54677658155396e-10,-7.49051935751164e-10,2.24293874197003e-06,-7.82547266638762e-05 +00:01:39.2999,69.7605301336441,-1.98181006481811e-10,-5.82885313181798e-10,2.02666479405566e-06,-7.07090641125988e-05 +00:01:39.3999,69.7605301336441,-1.52991950787019e-10,-4.49976325844174e-10,1.83124492342948e-06,-6.3890987296448e-05 +00:01:39.5000,69.7605301336441,-1.16944816517366e-10,-3.43955342698136e-10,1.65466829093173e-06,-5.77303392217408e-05 +00:01:39.6000,69.7605301336441,-8.82801214575717e-11,-2.59647416051682e-10,1.49511794860719e-06,-5.21637277376178e-05 +00:01:39.6999,69.7605301336441,-6.55691584494223e-11,-1.92850466027713e-10,1.35095214667566e-06,-4.71338732423027e-05 +00:01:39.7999,69.7605301336441,-4.76525402138058e-11,-1.40154530040605e-10,1.22068744085087e-06,-4.25890192833884e-05 +00:01:39.8999,69.7605301336441,-3.35900921742231e-11,-9.87943887477149e-11,1.10298342690845e-06,-3.84823999911773e-05 +00:01:40.0000,69.7605301336441,-2.26199956590837e-11,-6.6529398997305e-11,9.96628948002222e-07,-3.47717588653003e-05 diff --git a/Components/BEVController/BEVController_refsub_Basic.mdl b/Components/BEVController/BEVController_refsub_Basic.mdl index fe9e2f3d..63507964 100644 --- a/Components/BEVController/BEVController_refsub_Basic.mdl +++ b/Components/BEVController/BEVController_refsub_Basic.mdl @@ -1,12 +1,13 @@ # MathWorks OPC Text Package Model { - Version 10.7 - Description "Simulink model saved in R2023a" + Version 24.2 + Description "Simulink model saved in R2024b" } -__MWOPC_PACKAGE_BEGIN__ R2023a +__MWOPC_PACKAGE_BEGIN__ R2024b __MWOPC_PART_BEGIN__ /[Content_Types].xml + @@ -15,10 +16,9 @@ __MWOPC_PART_BEGIN__ /[Content_Types].xml - - + @@ -29,7 +29,7 @@ __MWOPC_PART_BEGIN__ /_rels/.rels - + @@ -43,9 +43,9 @@ __MWOPC_PART_BEGIN__ /metadata/coreProperties.xml 2023-02-09T16:48:39Z isaacito isaacito - 2023-04-19T07:37:25Z - 2.0 - R2023a + 2026-01-28T10:11:08Z + 5.1 + R2024b __MWOPC_PART_BEGIN__ /metadata/mwcoreProperties.xml @@ -53,7 +53,7 @@ __MWOPC_PART_BEGIN__ /metadata/mwcoreProperties.xml application/vnd.mathworks.simulink.model Simulink Model - R2023a + R2024b __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesExtension.xml @@ -64,19 +64,19 @@ __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesExtension.xml __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesReleaseInfo.xml - + - 9.14.0.2239454 - R2023a - Update 1 - Mar 30 2023 - 2891866933 + 24.2.0.3070828 + R2024b + Update 7 + Oct 30 2025 + 2188856867 __MWOPC_PART_BEGIN__ /simulink/_rels/blockdiagram.xml.rels - + @@ -109,7 +109,7 @@ __MWOPC_PART_BEGIN__ /simulink/blockdiagram.xml

%<Auto>

%<Auto>

-

%<AutoIncrement:2.0>

+

%<AutoIncrement:5.1>

normal

@@ -142,11 +142,11 @@ __MWOPC_PART_BEGIN__ /simulink/blockdiagram.xml __MWOPC_PART_BEGIN__ /simulink/configSet0.xml - +

[]

- +

[]

[]

@@ -191,7 +191,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

2

10

- +

[]

[]

@@ -232,8 +232,8 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

out.mat

[-inf, inf]

- - + + BooleansAsBitfields PassReuseOutputArgsAs PassReuseOutputArgsThreshold @@ -243,6 +243,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml NoFixptDivByZeroProtection UseSpecifiedMinMax EfficientTunableParamExpr + RemoveLocalVariableInitialization

[]

@@ -289,6 +290,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

-1

Inherit from target

on

+

on

off

off

off

@@ -301,10 +303,11 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

on

off

off

+

off

GradualUnderflow

off

- + UseOnlyExistingSharedCode @@ -350,6 +353,10 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

error

none

warning

+

off

+

0.0

+

0.0

+

OneBit

warning

none

none

@@ -371,7 +378,6 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

UseLocalSettings

on

off

-

none

error

none

none

@@ -379,7 +385,6 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

warning

none

warning

-

error

none

warning

error

@@ -423,7 +428,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

warning

UseLocalSettings

- +

[]

[]

@@ -471,7 +476,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

on

EmbeddedCoderHSP

- +

[]

[]

@@ -490,7 +495,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

off

off

- +

[]

[]

@@ -519,6 +524,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

on

on

65536

+

Prefer

off

[]

NotSpecified

@@ -537,8 +543,8 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

mkl-dnn

on

- - + + IncludeHyperlinkInReport GenerateTraceInfo GenerateTraceReport @@ -556,6 +562,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml CodeStackProfiling EmbeddedCoderDictionary DataTypeReplacement + HalideCodeGeneration

Generic Real-Time Target

grt.tlc

@@ -607,10 +614,12 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

off

stackProfile

off

+

off

CoderTypedefs

off

C

None

+

off

off

off

off

@@ -642,11 +651,15 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

0

none

on

+

fp32

20.02.1

unspecified

+

None

+

KeepInSourceFiles

+

131072

- - + + IgnoreCustomStorageClasses IgnoreTestpoints BlockCommentType @@ -675,6 +688,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml CustomSymbolStrEmxFcn CustomUserTokenString ReqsInCode + AnnotationsInComments

[]

@@ -715,6 +729,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

None

off

+

off

off

on

BlockPathComment

@@ -729,7 +744,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

[]

error

- + IncludeMdlTerminateFcn SuppressErrorStatus @@ -815,7 +830,10 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml SSE2 +

off

off

+

+

off

off

off

off

@@ -836,7 +854,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml
- +

[]

Simulink Coverage Configuration Component

[]

@@ -874,7 +892,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

Masking

off

- +

[]

HDL Coder custom configuration component

[]

@@ -898,71 +916,42 @@ __MWOPC_PART_BEGIN__ /simulink/configSetInfo.xml Configuration -__MWOPC_PART_BEGIN__ /simulink/graphicalInterface.xml - - -

2

- -

-

off

-

off

-

-1

-

inherit

-
- -

-

off

-

off

-

-1

-

inherit

-
-

4

- -

-

off

-

Info

-

inherit

-

off

-
- -

-

off

-

Vehicle

-

inherit

-

off

-
- -

-

off

-

MotorDrive

-

inherit

-

off

-
- -

-

off

-

BatteryHV

-

inherit

-

off

-
-

-

0

-

0

-

0

-

0

-

0

-

0

-

0

-

Unset

-

0

-

VariableStepAuto

-

0

-

Simulink

-

0

-

0

-

1

-
- +__MWOPC_PART_BEGIN__ /simulink/graphicalInterface.json +{ + "GraphicalInterface":{ + "PreCompExecutionDomainType":"Unset", + "RootInports":[ + { + "Name":"VehSpdRef", + "SampleTime":"-1" + }, + { + "Name":"FromPlant", + "SampleTime":"-1" + } + ], + "RootOutports":[ + { + "Name":"Info", + "SignalName":"Info" + }, + { + "Name":"Vehicle", + "SignalName":"Vehicle" + }, + { + "Name":"MotorDrive", + "SignalName":"MotorDrive" + }, + { + "Name":"BatteryHV", + "SignalName":"BatteryHV" + } + ], + "SimulinkSubDomainType":"Simulink", + "SolverName":"VariableStepAuto" + } +} __MWOPC_PART_BEGIN__ /simulink/hdlParams.xml @@ -1159,7 +1148,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_11.xml __MWOPC_PART_BEGIN__ /simulink/systems/system_24.xml -

[14, 51, 1154, 691]

+

[60, 60, 1200, 700]

[-205, 103, -175, 117]

-2

@@ -1205,6 +1194,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_24.xml

on

40

-40

+

off

[525, 95, 555, 125]

@@ -1293,6 +1283,20 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_24.xml

31#out:1

34#in:1

+ +

Zero-crossing detection is OFF

+

[377, -30, 515, -15]

+

[0, 0, 0, 0]

+

-1

+

markup

+
+ +

60405

+

Block:30

+

markup

+

2

+

[0.000000, 0.000000, 0.700000]

+
__MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml @@ -1300,7 +1304,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

[16, 135, 1156, 775]

simulink-default.rpt

-

52358

+

60405

[-30, 63, 0, 77]

26258

@@ -1512,51 +1516,51 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

4

-

225

+

249

11#out:1

[41, 0]

-

224

+

248

10#in:1

-

223

+

247

[0, 55]

24#in:1

<MotorSpd>

-

226

+

250

[0, 0]

23#out:1

24#in:2

TrqCmd

-

227

+

251

[-1, 1]

24#out:1

7#in:1

-

228

+

252

1#out:1

11#in:1

-

229

+

253

4#out:1

52358#in:1

-

230

+

254

2#out:1

22#in:1

<Motor>

-

231

+

255

[0, 0]

22#out:1

[38, 0; 0, -25]

@@ -1564,14 +1568,14 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

MotorSpdRef

-

232

+

256

[0, 0]

9#out:1

5#in:1

Info

-

233

+

257

[0, 0]

5#out:1

[90, 0]

@@ -1579,7 +1583,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

Vehicle

-

234

+

258

[0, 0]

6#out:1

[90, 0]

@@ -1587,7 +1591,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

MotorDrive

-

235

+

259

[0, 0]

7#out:1

[90, 0]

@@ -1595,7 +1599,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

BatteryHV

-

236

+

260

[0, 0]

8#out:1

[90, 0]

@@ -1603,39 +1607,39 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

<Battery>

-

237

+

261

[0, 0]

22#out:2

[75, 0]

52351#in:1

-

238

+

262

52338#out:1

52355#in:1

-

239

+

263

52339#out:1

52357#in:1

<MotorTemp>

-

240

+

264

[0, 0]

23#out:2

52352#in:1

<Temp>

-

241

+

265

[0, 0]

52351#out:1

52353#in:1

HeatCmd

-

242

+

266

[0, 0]

52355#out:1

[56, 0; 0, -20]

@@ -1643,7 +1647,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

HeatCmd

-

243

+

267

[0, 0]

52357#out:1

[-5, 0]

@@ -1651,11 +1655,22 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

BrakeForce

-

244

+

268

[0, 0]

52358#out:1

6#in:1

+ +

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body align="left" style=" font-family:'Arial'; font-size:12px; font-weight:400; font-style:normal;"> +<p align="left" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12px;">Copyright 2020-2026 The MathWorks, Inc.</span></p></body></html>

+

[261, 318, 488, 334]

+

[0, 0, 0, 0]

+

rich

+

-1

+
__MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml @@ -1717,7 +1732,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

2046061d-ef52-4cb6-823e-be880f0992b6

-

1b0dd340-cf25-4919-8bf6-7f92c0d16a33

+

ad307a8f-5d93-44dd-9576-fe806390c02f

diff --git a/Components/ControllerAndEnvironment/CtrlEnv_refsub_Basic.mdl b/Components/ControllerAndEnvironment/CtrlEnv_refsub_Basic.mdl index 76e4bd1e..5ff8ec72 100644 --- a/Components/ControllerAndEnvironment/CtrlEnv_refsub_Basic.mdl +++ b/Components/ControllerAndEnvironment/CtrlEnv_refsub_Basic.mdl @@ -1,12 +1,13 @@ # MathWorks OPC Text Package Model { - Version 10.7 - Description "Simulink model saved in R2023a" + Version 24.2 + Description "Simulink model saved in R2024b" } -__MWOPC_PACKAGE_BEGIN__ R2023a +__MWOPC_PACKAGE_BEGIN__ R2024b __MWOPC_PART_BEGIN__ /[Content_Types].xml + @@ -15,9 +16,8 @@ __MWOPC_PART_BEGIN__ /[Content_Types].xml - - + @@ -30,7 +30,7 @@ __MWOPC_PART_BEGIN__ /_rels/.rels - + @@ -44,9 +44,9 @@ __MWOPC_PART_BEGIN__ /metadata/coreProperties.xml 2020-08-04T16:28:06Z isaacito isaacito - 2023-04-19T07:37:27Z - 7.0 - R2023a + 2026-01-28T09:54:26Z + 10.0 + R2024b __MWOPC_PART_BEGIN__ /metadata/mwcoreProperties.xml @@ -54,7 +54,7 @@ __MWOPC_PART_BEGIN__ /metadata/mwcoreProperties.xml application/vnd.mathworks.simulink.model Simulink Model - R2023a + R2024b __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesExtension.xml @@ -65,20 +65,20 @@ __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesExtension.xml __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesReleaseInfo.xml - + - 9.14.0.2239454 - R2023a - Update 1 - Mar 30 2023 - 2891866933 + 24.2.0.3070828 + R2024b + Update 7 + Oct 30 2025 + 2188856867 __MWOPC_PART_BEGIN__ /simulink/_rels/blockdiagram.xml.rels - + @@ -111,7 +111,7 @@ __MWOPC_PART_BEGIN__ /simulink/blockdiagram.xml

%<Auto>

%<Auto>

-

%<AutoIncrement:7.0>

+

%<AutoIncrement:10.0>

on

@@ -147,11 +147,11 @@ __MWOPC_PART_BEGIN__ /simulink/blockdiagram.xml __MWOPC_PART_BEGIN__ /simulink/configSet0.xml - +

[]

- +

[]

[]

@@ -196,7 +196,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

2

10

- +

[]

[]

@@ -237,8 +237,8 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

out.mat

[-inf, inf]

- - + + BooleansAsBitfields PassReuseOutputArgsAs PassReuseOutputArgsThreshold @@ -248,6 +248,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml NoFixptDivByZeroProtection UseSpecifiedMinMax EfficientTunableParamExpr + RemoveLocalVariableInitialization

[]

@@ -294,6 +295,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

-1

Inherit from target

on

+

on

off

off

off

@@ -306,10 +308,11 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

on

off

off

+

off

GradualUnderflow

off

- + UseOnlyExistingSharedCode @@ -355,6 +358,10 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

error

none

warning

+

off

+

0.0

+

0.0

+

OneBit

warning

none

none

@@ -376,7 +383,6 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

UseLocalSettings

on

off

-

none

error

none

none

@@ -384,7 +390,6 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

warning

none

warning

-

error

none

warning

error

@@ -428,7 +433,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

warning

UseLocalSettings

- +

[]

[]

@@ -476,7 +481,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

on

EmbeddedCoderHSP

- +

[]

[]

@@ -495,7 +500,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

off

off

- +

[]

[]

@@ -524,6 +529,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

on

on

65536

+

Prefer

off

[]

NotSpecified

@@ -542,8 +548,8 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

mkl-dnn

on

- - + + IncludeHyperlinkInReport GenerateTraceInfo GenerateTraceReport @@ -561,6 +567,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml CodeStackProfiling EmbeddedCoderDictionary DataTypeReplacement + HalideCodeGeneration

grt.tlc

@@ -612,10 +619,12 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

off

stackProfile

off

+

off

CoderTypedefs

off

C

None

+

off

off

off

off

@@ -647,11 +656,15 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

0

none

on

+

fp32

19.05

unspecified

+

None

+

KeepInSourceFiles

+

131072

- - + + IgnoreCustomStorageClasses IgnoreTestpoints BlockCommentType @@ -680,6 +693,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml CustomSymbolStrEmxFcn CustomUserTokenString ReqsInCode + AnnotationsInComments

[]

@@ -720,6 +734,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

None

off

+

off

off

on

BlockPathComment

@@ -734,7 +749,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

[]

error

- + IncludeMdlTerminateFcn SuppressErrorStatus @@ -820,7 +835,10 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml None +

off

off

+

+

off

off

off

off

@@ -841,7 +859,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml
- +

[]

Simulink Coverage Configuration Component

[]

@@ -879,7 +897,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

Masking

off

- +

[]

HDL Coder custom configuration component

[]

@@ -903,62 +921,63 @@ __MWOPC_PART_BEGIN__ /simulink/configSetInfo.xml Configuration -__MWOPC_PART_BEGIN__ /simulink/graphicalInterface.xml - - -

1

- -

-

off

-

off

-

-1

-

inherit

-
-

1

- -

-

off

-

{"busObjects":null,"leafNodes":["Vehicle","Info","MotorDrive","BatteryHV"],"version":"0"}

-

inherit

-

off

-
-

2

- -

$bdroot/BEV Controller|BEVController_refsub_Basic

-
- -

$bdroot/Vehicle speed reference|VehSpdRef_refsub_Basic

-
-

-

0

-

0

-

0

-

0

-

0

-

0

-

0

-

Unset

-

0

-

VariableStepAuto

-

0

-

Simulink

-

0

-

2

- -

BEVController_refsub_Basic

-

$bdroot/BEV Controller

-

52264

-

SUBSYSTEM_REFERENCE_BLOCK

-
- -

VehSpdRef_refsub_Basic

-

$bdroot/Vehicle speed reference

-

52319

-

SUBSYSTEM_REFERENCE_BLOCK

-
-

1

-
- +__MWOPC_PART_BEGIN__ /simulink/graphicalInterface.json +{ + "GraphicalInterface":{ + "ExternalFileReferences":[ + { + "Path":"$bdroot\/BEV Controller", + "Reference":"BEVController_refsub_Basic", + "SID":"52264", + "Type":"SUBSYSTEM_REFERENCE_BLOCK" + }, + { + "Path":"$bdroot\/Vehicle speed reference", + "Reference":"VehSpdRef_refsub_Basic", + "SID":"52319", + "Type":"SUBSYSTEM_REFERENCE_BLOCK" + } + ], + "PreCompExecutionDomainType":"Unset", + "RootInports":[ + { + "Name":"FromPlant", + "SampleTime":"-1" + } + ], + "RootOutports":[ + { + "BusData":{ + "_mw_element_type":"Opaque", + "busObjects":null, + "leafNodes":[ + "Vehicle.RoadGrade", + "Vehicle.BrakeForce", + "Info.VehSpdRef", + "Info.MotorSpdRef", + "MotorDrive.TrqCmd", + "MotorDrive.HeatCmd", + "BatteryHV.HeatCmd" + ], + "version":"0" + }, + "Name":"Inputs" + } + ], + "SimulinkSubDomainType":"Simulink", + "SolverName":"VariableStepAuto", + "SubsystemReferences":[ + { + "BlockPath":"$bdroot\/BEV Controller", + "SubsystemName":"BEVController_refsub_Basic" + }, + { + "BlockPath":"$bdroot\/Vehicle speed reference", + "SubsystemName":"VehSpdRef_refsub_Basic" + } + ] + } +} __MWOPC_PART_BEGIN__ /simulink/modelDictionary.xml @@ -1013,7 +1032,7 @@ __MWOPC_PART_BEGIN__ /simulink/stateflow/machine.xml -

80000056

+

82450000

Default Simulink S-Function Target.

@@ -1209,6 +1228,26 @@ open_system(gcb, "force")

on

BEVController_refsub_Basic

+ + +

VehSpdRef

+
+ +

FromPlant

+
+ +

Info

+
+ +

Vehicle

+
+ +

MotorDrive

+
+ +

BatteryHV

+
+
@@ -1238,6 +1277,11 @@ open_system(gcb, "force")

on

VehSpdRef_refsub_Basic

+ + +

Outport

+
+

[995, 155, 1005, 165]

@@ -1359,8 +1403,8 @@ open_system(gcb, "force")

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body align="left" style=" font-family:'Helvetica'; font-size:10px; font-weight:400; font-style:normal;"> -<p align="left" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12px;">Copyright 2020-2023 The MathWorks, Inc.</span></p></body></html>

+</style></head><body align="left" style=" font-family:'Arial'; font-size:12px; font-weight:400; font-style:normal;"> +<p align="left" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12px;">Copyright 2020-2026 The MathWorks, Inc.</span></p></body></html>

[596, 308, 823, 324]

[0, 0, 0, 0]

rich

@@ -1469,7 +1513,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

e60b3c51-1890-4c33-8fec-cf8028969947

-

76c60c72-d683-4231-bd3a-976286eaa560

+

88709f04-91cb-469d-b2e6-b6bf800048f4

diff --git a/Components/VehicleSpeedReference/VehSpdRef_refsub_Basic.mdl b/Components/VehicleSpeedReference/VehSpdRef_refsub_Basic.mdl index 825e70a4..5e860d5f 100644 --- a/Components/VehicleSpeedReference/VehSpdRef_refsub_Basic.mdl +++ b/Components/VehicleSpeedReference/VehSpdRef_refsub_Basic.mdl @@ -44,8 +44,8 @@ __MWOPC_PART_BEGIN__ /metadata/coreProperties.xml 2023-02-09T11:05:38Z isaacito isaacito - 2024-11-20T07:58:36Z - 5.4 + 2026-01-28T10:18:56Z + 5.6 R2024b @@ -67,11 +67,11 @@ __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesReleaseInfo.xml - 24.2.0.2773142 + 24.2.0.3070828 R2024b - Update 2 - Oct 22 2024 - 227631694 + Update 7 + Oct 30 2025 + 2188856867 __MWOPC_PART_BEGIN__ /simulink/_rels/blockdiagram.xml.rels @@ -111,7 +111,7 @@ __MWOPC_PART_BEGIN__ /simulink/blockdiagram.xml

%<Auto>

%<Auto>

-

%<AutoIncrement:5.4>

+

%<AutoIncrement:5.6>

normal

@@ -1661,32 +1661,32 @@ update(sig)

km/h

-

348

+

354

10#out:1

11#in:4

-

349

+

355

805#out:1

11#in:3

-

350

+

356

801#out:1

11#in:2

-

351

+

357

1#out:1

11#in:1

-

352

+

358

11#out:1

12#in:1

-

353

+

359

809#out:1

11#in:5

@@ -1704,7 +1704,7 @@ p, li { white-space: pre-wrap; }

on

on

rich

-

-12

+

-52

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1715,7 +1715,7 @@ p, li { white-space: pre-wrap; }

[61, 186, 288, 202]

[0, 0, 0, 0]

rich

-

-13

+

-53

52328

@@ -1785,7 +1785,7 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

8bc14801-6706-4a24-a221-00273b187e76

-

582c9b72-465c-4d01-a600-5f416f14b729

+

eae75b8e-8fe4-4ae9-b112-6a32a6220de3

diff --git a/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_calcElectricEfficiency.mlx b/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_calcElectricEfficiency.mlx deleted file mode 100644 index c091b1e4..00000000 Binary files a/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_calcElectricEfficiency.mlx and /dev/null differ diff --git a/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_runSim.mlx b/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_runSim.mlx deleted file mode 100644 index dce8dc15..00000000 Binary files a/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_runSim.mlx and /dev/null differ diff --git a/DetailedModelApplications/BEVProject_DetailedModelApplications.mlx b/FYI/BEVProject_DetailedModelApplications.mlx similarity index 100% rename from DetailedModelApplications/BEVProject_DetailedModelApplications.mlx rename to FYI/BEVProject_DetailedModelApplications.mlx diff --git a/DetailedModelApplications/MotorDrivePmsmFem/MotorDriveElecLossParams.mat b/FYI/MotorDrivePmsmFem/MotorDriveElecLossParams.mat similarity index 100% rename from DetailedModelApplications/MotorDrivePmsmFem/MotorDriveElecLossParams.mat rename to FYI/MotorDrivePmsmFem/MotorDriveElecLossParams.mat diff --git a/DetailedModelApplications/MotorDrivePmsmFem/MotorDriveElecLossParams_text.m b/FYI/MotorDrivePmsmFem/MotorDriveElecLossParams_text.m similarity index 100% rename from DetailedModelApplications/MotorDrivePmsmFem/MotorDriveElecLossParams_text.m rename to FYI/MotorDrivePmsmFem/MotorDriveElecLossParams_text.m diff --git a/DetailedModelApplications/MotorDrivePmsmFem/MotorDrivePmsmFemParams.m b/FYI/MotorDrivePmsmFem/MotorDrivePmsmFemParams.m similarity index 100% rename from DetailedModelApplications/MotorDrivePmsmFem/MotorDrivePmsmFemParams.m rename to FYI/MotorDrivePmsmFem/MotorDrivePmsmFemParams.m diff --git a/FYI/MotorDrivePmsmFem/MotorDrive_calcElectricEfficiency.mlx b/FYI/MotorDrivePmsmFem/MotorDrive_calcElectricEfficiency.mlx new file mode 100644 index 00000000..e1e055ec Binary files /dev/null and b/FYI/MotorDrivePmsmFem/MotorDrive_calcElectricEfficiency.mlx differ diff --git a/FYI/MotorDrivePmsmFem/MotorDrive_runSim.mlx b/FYI/MotorDrivePmsmFem/MotorDrive_runSim.mlx new file mode 100644 index 00000000..8f11c944 Binary files /dev/null and b/FYI/MotorDrivePmsmFem/MotorDrive_runSim.mlx differ diff --git a/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_testHarness.mdl b/FYI/MotorDrivePmsmFem/MotorDrive_testHarness.mdl similarity index 75% rename from DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_testHarness.mdl rename to FYI/MotorDrivePmsmFem/MotorDrive_testHarness.mdl index 02465883..3ef5177d 100644 --- a/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_testHarness.mdl +++ b/FYI/MotorDrivePmsmFem/MotorDrive_testHarness.mdl @@ -1,12 +1,14 @@ # MathWorks OPC Text Package Model { - Version 23.2 - Description "Simulink model saved in R2023b" + Version 24.2 + Description "Simulink model saved in R2024b" } -__MWOPC_PACKAGE_BEGIN__ R2023b +__MWOPC_PACKAGE_BEGIN__ R2024b __MWOPC_PART_BEGIN__ /[Content_Types].xml + + @@ -15,7 +17,6 @@ __MWOPC_PART_BEGIN__ /[Content_Types].xml - @@ -46,10 +47,10 @@ __MWOPC_PART_BEGIN__ /metadata/coreProperties.xml 2013-03-08T11:42:37Z The MathWorks, Inc. Three-Phase PMSM Drive - ythvg - 2023-12-15T15:42:37Z - 8.7 - R2023b + isaacito + 2026-01-29T14:08:36Z + 10.0 + R2024b __MWOPC_PART_BEGIN__ /metadata/mwcoreProperties.xml @@ -57,7 +58,7 @@ __MWOPC_PART_BEGIN__ /metadata/mwcoreProperties.xml application/vnd.mathworks.simulink.model Simulink Model - R2023b + R2024b __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesExtension.xml @@ -68,13 +69,13 @@ __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesExtension.xml __MWOPC_PART_BEGIN__ /metadata/mwcorePropertiesReleaseInfo.xml - + - 23.2.0.2459199 - R2023b - Update 5 - Nov 28 2023 - 871413816 + 24.2.0.3070828 + R2024b + Update 7 + Oct 30 2025 + 2188856867 __MWOPC_PART_BEGIN__ /simulink/_rels/blockdiagram.xml.rels @@ -83,8 +84,30 @@ __MWOPC_PART_BEGIN__ /simulink/_rels/blockdiagram.xml.rels + + + + + + + + + + + + + + + + + + + + + + - + @@ -123,6 +146,556 @@ __MWOPC_PART_BEGIN__ /simulink/bddefaults.xml +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1152.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1153.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1155.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1159.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1161.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1173.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1174.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1209.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1215.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1216.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1217.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1218.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1219.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1220.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1221.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1232.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_1238.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_548.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_666.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_771.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_920.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== +__MWOPC_PART_BEGIN__ /simulink/bdmxdata/SimscapeInstrumentationVariables_921.mxarray BASE64 +AAFJTQAAAAAOAAAAoAAAAAYAAAAIAAAAEQAAAAAAAAABAAAAAAAAAAEABABNQ09TAQAAACYAAABz +aW1zY2FwZS5pbnN0cnVtZW50YXRpb24uVmFyaWFibGVUYWJsZQAADgAAAEgAAAAGAAAACAAAAA0A +AAAAAAAABQAAAAgAAAAGAAAAAQAAAAEAAAAAAAAABgAAABgAAAAAAADdAgAAAAEAAAABAAAAAQAA +AAEAAAAOAAAAgAQAAAYAAAAIAAAACQAAAAAAAAAFAAAACAAAAAEAAABQBAAAAQAAAAAAAAACAAAA +UAQAAAABSU0AAAAADgAAALADAAAGAAAACAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAQAAAAEAAAAA +AAAABQAEAAUAAAABAAAABQAAAE1DT1MAAAAADgAAAGgDAAAGAAAACAAAABEAAAAAAAAAAQAAAAAA +AAABAAQATUNPUwEAAAANAAAARmlsZVdyYXBwZXJfXwAAAA4AAAAoAwAABgAAAAgAAAABAAAAAAAA +AAUAAAAIAAAABgAAAAEAAAABAAAAAAAAAA4AAAAAAQAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAA +0AAAAAEAAAABAAAAAAAAAAIAAADQAAAABAAAAAMAAABYAAAAeAAAAJAAAADAAAAAyAAAAMgAAADI +AAAA0AAAAGFueQBWYXJpYWJsZVRhYmxlAHNpbXNjYXBlLmluc3RydW1lbnRhdGlvbgAAAAAAAAAA +AAAAAAAAAAAAAAAAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAA4AAAAAAAAADgAAAEgAAAAGAAAACAAAAAQAAAAAAAAABQAAAAgAAAABAAAAGAAAAAEAAAAA +AAAAEAAAABgAAAB7InRhYmxlIjpbXSwidmVyIjoiMS4wIn0OAAAAqAAAAAYAAAAIAAAAAQAAAAAA +AAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAA +AAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAACAAAAAIAAAAAAAAA +BQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAAA4AAAABgAAAAgAAAAM +AAAAAAAAAAUAAAAIAAAAAgAAAAEAAAABAAAAAAAAAAUAAAAIAAAAAAAAAAAAAAAOAAAAqAAAAAYA +AAAIAAAAAQAAAAAAAAAFAAAACAAAAAIAAAABAAAAAQAAAAAAAAAOAAAAOAAAAAYAAAAIAAAAAgAA +AAAAAAAFAAAACAAAAAEAAAAAAAAAAQAAAAAAAAAFAAQAAQAAAAEAAAAAAAAADgAAADgAAAAGAAAA +CAAAAAIAAAAAAAAABQAAAAgAAAABAAAAAAAAAAEAAAAAAAAABQAEAAEAAAABAAAAAAAAAA4AAACI +AAAABgAAAAgAAAAJAAAAAAAAAAUAAAAIAAAAAQAAAFgAAAABAAAAAAAAAAIAAABYAAAAAAFJTQAA +AAAOAAAASAAAAAYAAAAIAAAAAgAAAAAAAAAFAAAACAAAAAEAAAABAAAAAQAAAAAAAAAFAAQABQAA +AAEAAAAFAAAATUNPUwAAAAAOAAAAAAAAAA== __MWOPC_PART_BEGIN__ /simulink/blockdiagram.xml @@ -133,13 +706,13 @@ __MWOPC_PART_BEGIN__ /simulink/blockdiagram.xml

win64

572499788

-

1887235409

+

397995545

Power_System_Blocks|Simscape

%<Auto>

%<Auto>

-

%<AutoIncrement:8.7>

+

%<AutoIncrement:10.0>

on

@@ -345,11 +918,11 @@ __MWOPC_PART_BEGIN__ /simulink/blockdiagram.xml __MWOPC_PART_BEGIN__ /simulink/configSet0.xml - +

[]

- +

[]

[]

@@ -394,7 +967,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

2

10

- +

[]

[]

@@ -435,7 +1008,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

out.mat

[-inf, inf]

- + BooleansAsBitfields PassReuseOutputArgsAs @@ -506,10 +1079,11 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

on

off

off

+

off

GradualUnderflow

off

- + UseOnlyExistingSharedCode @@ -555,6 +1129,10 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

error

none

warning

+

off

+

0.0

+

0.0

+

OneBit

warning

none

none

@@ -576,7 +1154,6 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

UseLocalSettings

off

off

-

none

error

none

none

@@ -584,7 +1161,6 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

warning

none

warning

-

error

none

warning

error

@@ -628,7 +1204,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

warning

UseLocalSettings

- +

[]

[]

@@ -676,7 +1252,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

on

EmbeddedCoderHSP

- +

[]

[]

@@ -695,7 +1271,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

off

off

- +

[]

[]

@@ -724,6 +1300,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

on

on

65536

+

Prefer

off

[]

NotSpecified

@@ -742,7 +1319,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

mkl-dnn

on

- + IncludeHyperlinkInReport GenerateTraceInfo @@ -813,6 +1390,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

off

stackProfile

off

+

off

CoderTypedefs

off

C

@@ -849,12 +1427,15 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

0

none

on

+

fp32

20.02.1

unspecified

None

+

KeepInSourceFiles

+

131072

- - + + IgnoreCustomStorageClasses IgnoreTestpoints InsertBlockDesc @@ -884,6 +1465,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml CustomSymbolStrEmxType CustomSymbolStrEmxFcn BlockCommentType + AnnotationsInComments

[]

@@ -924,6 +1506,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

None

off

+

off

off

on

BlockPathComment

@@ -938,7 +1521,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

[]

error

- + GeneratePreprocessorConditionals IncludeMdlTerminateFcn @@ -1026,7 +1609,10 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml None +

off

off

+

+

off

off

off

off

@@ -1047,7 +1633,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml
- +

[]

Simulink Coverage Configuration Component

[]

@@ -1085,7 +1671,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

Masking

off

- +

[]

HDL Coder custom configuration component

[]

@@ -1095,17 +1681,17 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

0

- + Name

- +

[]

Simscape Multibody

- +

[]

Diagnostics

[]

@@ -1120,13 +1706,16 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

warning

error

- +

[]

Explorer

[]

ExplorerConfigSet

on

+

none

+

smplaybacklog

+

30

SimscapeMultibody

@@ -1149,6 +1738,7 @@ __MWOPC_PART_BEGIN__ /simulink/configSet0.xml

off

off

+

off

on

@@ -1166,380 +1756,321 @@ __MWOPC_PART_BEGIN__ /simulink/configSetInfo.xml Configuration -__MWOPC_PART_BEGIN__ /simulink/graphicalInterface.xml - - -

0

-

0

-

-

0

-

8

- -

Target Speed

-

$bdroot/Constant Target Speed

-

1

-

5000

-

2

-
- -

Load Torque

-

$bdroot/Step Load Torque

-

1

-

5000

-

2

-
- -

PMSM Phase Voltages

-

$bdroot/Motor Drive/Filter

-

1

-

5000

-

2

-
- -

PMSM Phase Currents

-

$bdroot/Motor Drive/PS-Simulink Converter

-

1

-

5000

-

2

-
- -

Motor Torque

-

$bdroot/Motor Drive/Encoder/PS-S1

-

1

-

5000

-

2

-
- -

Motor Speed

-

$bdroot/Motor Drive/Encoder/PS-S2

-

1

-

5000

-

2

-
- -

FOC_TrqRef_Nm

-

$bdroot/Motor Drive/PMSM Controller/Signal Specification2

-

1

-

5000

-

2

-
- -

<motorSpd>

-

$bdroot/Scope/Bus Selector

-

1

-

5000

-

2

-
-

0

-

0

-

0

-

0

-

0

-

0

-

Unset

-

0

-

VariableStepAuto

-

0

-

Simulink

-

0

-

41

- -

fl_lib/Electrical/Electrical Elements/Electrical Reference

-

$bdroot/Electrical Reference2

-

548

-

LIBRARY_BLOCK

-
- -

ee_lib/Sources/Voltage Source

-

$bdroot/High Voltage Source/DC Bus

-

666

-

LIBRARY_BLOCK

-
- -

fl_lib/Mechanical/Rotational Elements/Inertia

-

$bdroot/Load inertia

-

771

-

LIBRARY_BLOCK

-
- -

fl_lib/Mechanical/Rotational Elements/Mechanical -Rotational Reference

-

$bdroot/Mechanical Rotational Reference4

-

921

-

LIBRARY_BLOCK

-
- -

ee_lib/Sensors & -Transducers/Current Sensor -(Three-Phase)

-

$bdroot/Motor Drive/Current Sensor (Three-Phase)

-

1152

-

LIBRARY_BLOCK

-
- -

fl_lib/Electrical/Electrical Elements/Electrical Reference

-

$bdroot/Motor Drive/Electrical Reference

-

1153

-

LIBRARY_BLOCK

-
- -

fl_lib/Mechanical/Rotational Elements/Mechanical -Rotational Reference

-

$bdroot/Motor Drive/Encoder/Mechanical Rotational Reference3

-

1155

-

LIBRARY_BLOCK

-
- -

nesl_utility/PS-Simulink -Converter

-

$bdroot/Motor Drive/Encoder/PS-S1

-

1156

-

LIBRARY_BLOCK

-
- -

nesl_utility/PS-Simulink -Converter

-

$bdroot/Motor Drive/Encoder/PS-S2

-

1157

-

LIBRARY_BLOCK

-
- -

nesl_utility/PS-Simulink -Converter

-

$bdroot/Motor Drive/Encoder/PS-Simulink Converter1

-

1158

-

LIBRARY_BLOCK

-
- -

fl_lib/Mechanical/Mechanical Sensors/Ideal Rotational -Motion Sensor

-

$bdroot/Motor Drive/Encoder/Rotational Motion Sensor

-

1159

-

LIBRARY_BLOCK

-
- -

fl_lib/Mechanical/Mechanical Sensors/Ideal Torque Sensor

-

$bdroot/Motor Drive/Encoder/Torque Sensor

-

1161

-

LIBRARY_BLOCK

-
- -

ee_lib/Electromechanical/Permanent Magnet/FEM-Parameterized -PMSM

-

$bdroot/Motor Drive/FEM-Parameterized PMSM

-

1238

-

LIBRARY_BLOCK

-
- -

spsFirstOrderFilterLib/First-Order -Filter

-

$bdroot/Motor Drive/Filter/Time const2: 1e-5

-

1168

-

LIBRARY_BLOCK

-
- -

spsFirstOrderFilterLib/First-Order -Filter

-

$bdroot/Motor Drive/Filter/Time const: 1e-4

-

1169

-

LIBRARY_BLOCK

-
- -

spsFirstOrderFilterLib/First-Order -Filter

-

$bdroot/Motor Drive/Filter/Time const: 1e-5

-

1170

-

LIBRARY_BLOCK

-
- -

spsFirstOrderFilterLib/First-Order -Filter

-

$bdroot/Motor Drive/Filter/Time const: 5e-4

-

1171

-

LIBRARY_BLOCK

-
- -

ee_lib/Sensors & -Transducers/Line Voltage Sensor -(Three-Phase)

-

$bdroot/Motor Drive/Line Voltage Sensor (Three-Phase)

-

1173

-

LIBRARY_BLOCK

-
- -

fl_lib/Mechanical/Rotational Elements/Mechanical -Rotational Reference

-

$bdroot/Motor Drive/Mechanical Rotational Reference1

-

1174

-

LIBRARY_BLOCK

-
- -

eePmsmFieldOrientedControl/PMSM Field-Oriented -Control

-

$bdroot/Motor Drive/PMSM Controller/PMSM Field-Oriented Control

-

1189

-

LIBRARY_BLOCK

-
- -

nesl_utility/PS-Simulink -Converter

-

$bdroot/Motor Drive/PS-Simulink Converter

-

1206

-

LIBRARY_BLOCK

-
- -

nesl_utility/PS-Simulink -Converter

-

$bdroot/Motor Drive/PS-Simulink Converter1

-

1207

-

LIBRARY_BLOCK

-
- -

nesl_utility/PS-Simulink -Converter

-

$bdroot/Motor Drive/PS-Simulink Converter2

-

1208

-

LIBRARY_BLOCK

-
- -

ee_lib/Connectors & -References/Phase Splitter

-

$bdroot/Motor Drive/Phase Splitter

-

1209

-

LIBRARY_BLOCK

-
- -

ee_lib/Semiconductors & -Converters/IGBT -(Ideal, -Switching)

-

$bdroot/Motor Drive/Three-phase Inverter/IGBT A(H)

-

1215

-

LIBRARY_BLOCK

-
- -

ee_lib/Semiconductors & -Converters/IGBT -(Ideal, -Switching)

-

$bdroot/Motor Drive/Three-phase Inverter/IGBT A(L)

-

1216

-

LIBRARY_BLOCK

-
- -

ee_lib/Semiconductors & -Converters/IGBT -(Ideal, -Switching)

-

$bdroot/Motor Drive/Three-phase Inverter/IGBT B(H)

-

1217

-

LIBRARY_BLOCK

-
- -

ee_lib/Semiconductors & -Converters/IGBT -(Ideal, -Switching)

-

$bdroot/Motor Drive/Three-phase Inverter/IGBT B(L)

-

1218

-

LIBRARY_BLOCK

-
- -

ee_lib/Semiconductors & -Converters/IGBT -(Ideal, -Switching)

-

$bdroot/Motor Drive/Three-phase Inverter/IGBT C(H)

-

1219

-

LIBRARY_BLOCK

-
- -

ee_lib/Semiconductors & -Converters/IGBT -(Ideal, -Switching)

-

$bdroot/Motor Drive/Three-phase Inverter/IGBT C(L)

-

1220

-

LIBRARY_BLOCK

-
- -

ee_lib/Connectors & -References/Phase Splitter

-

$bdroot/Motor Drive/Three-phase Inverter/Phase Splitter

-

1221

-

LIBRARY_BLOCK

-
- -

nesl_utility/Simulink-PS -Converter

-

$bdroot/Motor Drive/Three-phase Inverter/Simulink-PS G1

-

1222

-

LIBRARY_BLOCK

-
- -

nesl_utility/Simulink-PS -Converter

-

$bdroot/Motor Drive/Three-phase Inverter/Simulink-PS G2

-

1223

-

LIBRARY_BLOCK

-
- -

nesl_utility/Simulink-PS -Converter

-

$bdroot/Motor Drive/Three-phase Inverter/Simulink-PS G3

-

1224

-

LIBRARY_BLOCK

-
- -

nesl_utility/Simulink-PS -Converter

-

$bdroot/Motor Drive/Three-phase Inverter/Simulink-PS G4

-

1225

-

LIBRARY_BLOCK

-
- -

nesl_utility/Simulink-PS -Converter

-

$bdroot/Motor Drive/Three-phase Inverter/Simulink-PS G5

-

1226

-

LIBRARY_BLOCK

-
- -

nesl_utility/Simulink-PS -Converter

-

$bdroot/Motor Drive/Three-phase Inverter/Simulink-PS G6

-

1227

-

LIBRARY_BLOCK

-
- -

fl_lib/Electrical/Electrical Sensors/Voltage Sensor

-

$bdroot/Motor Drive/Voltage Sensor

-

1232

-

LIBRARY_BLOCK

-
- -

nesl_utility/Simulink-PS -Converter

-

$bdroot/Simulink-PS Converter1

-

922

-

LIBRARY_BLOCK

-
- -

nesl_utility/Solver -Configuration

-

$bdroot/Solver Configuration1

-

608

-

LIBRARY_BLOCK

-
- -

fl_lib/Mechanical/Mechanical Sources/Ideal Torque Source

-

$bdroot/Torque Source

-

920

-

LIBRARY_BLOCK

-
-

0

-
- +__MWOPC_PART_BEGIN__ /simulink/graphicalInterface.json +{ + "GraphicalInterface":{ + "ExternalFileReferences":[ + { + "Path":"$bdroot\/Electrical Reference2", + "Reference":"fl_lib\/Electrical\/Electrical Elements\/Electrical Reference", + "SID":"548", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/High Voltage Source\/DC Bus", + "Reference":"ee_lib\/Sources\/Voltage Source", + "SID":"666", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Load inertia", + "Reference":"fl_lib\/Mechanical\/Rotational Elements\/Inertia", + "SID":"771", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Mechanical Rotational Reference4", + "Reference":"fl_lib\/Mechanical\/Rotational Elements\/Mechanical\nRotational Reference", + "SID":"921", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Current Sensor (Three-Phase)", + "Reference":"ee_lib\/Sensors &\nTransducers\/Current Sensor\n(Three-Phase)", + "SID":"1152", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Electrical Reference", + "Reference":"fl_lib\/Electrical\/Electrical Elements\/Electrical Reference", + "SID":"1153", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Encoder\/Mechanical Rotational Reference3", + "Reference":"fl_lib\/Mechanical\/Rotational Elements\/Mechanical\nRotational Reference", + "SID":"1155", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Encoder\/PS-S1", + "Reference":"nesl_utility\/PS-Simulink\nConverter", + "SID":"1156", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Encoder\/PS-S2", + "Reference":"nesl_utility\/PS-Simulink\nConverter", + "SID":"1157", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Encoder\/PS-Simulink Converter1", + "Reference":"nesl_utility\/PS-Simulink\nConverter", + "SID":"1158", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Encoder\/Rotational Motion Sensor", + "Reference":"fl_lib\/Mechanical\/Mechanical Sensors\/Ideal Rotational\nMotion Sensor", + "SID":"1159", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Encoder\/Torque Sensor", + "Reference":"fl_lib\/Mechanical\/Mechanical Sensors\/Ideal Torque Sensor", + "SID":"1161", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/FEM-Parameterized PMSM", + "Reference":"ee_lib\/Electromechanical\/Permanent Magnet\/FEM-Parameterized\nPMSM", + "SID":"1238", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Filter\/Time const2: 1e-5", + "Reference":"spsFirstOrderFilterLib\/First-Order\nFilter", + "SID":"1168", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Filter\/Time const: 1e-4", + "Reference":"spsFirstOrderFilterLib\/First-Order\nFilter", + "SID":"1169", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Filter\/Time const: 1e-5", + "Reference":"spsFirstOrderFilterLib\/First-Order\nFilter", + "SID":"1170", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Filter\/Time const: 5e-4", + "Reference":"spsFirstOrderFilterLib\/First-Order\nFilter", + "SID":"1171", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Line Voltage Sensor (Three-Phase)", + "Reference":"ee_lib\/Sensors &\nTransducers\/Line Voltage Sensor\n(Three-Phase)", + "SID":"1173", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Mechanical Rotational Reference1", + "Reference":"fl_lib\/Mechanical\/Rotational Elements\/Mechanical\nRotational Reference", + "SID":"1174", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/PMSM Controller\/PMSM Field-Oriented Control", + "Reference":"eePmsmFieldOrientedControl\/PMSM Field-Oriented\nControl", + "SID":"1189", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/PS-Simulink Converter", + "Reference":"nesl_utility\/PS-Simulink\nConverter", + "SID":"1206", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/PS-Simulink Converter1", + "Reference":"nesl_utility\/PS-Simulink\nConverter", + "SID":"1207", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/PS-Simulink Converter2", + "Reference":"nesl_utility\/PS-Simulink\nConverter", + "SID":"1208", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Phase Splitter", + "Reference":"ee_lib\/Connectors &\nReferences\/Phase Splitter", + "SID":"1209", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/IGBT A(H)", + "Reference":"ee_lib\/Semiconductors &\nConverters\/IGBT\n(Ideal,\nSwitching)", + "SID":"1215", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/IGBT A(L)", + "Reference":"ee_lib\/Semiconductors &\nConverters\/IGBT\n(Ideal,\nSwitching)", + "SID":"1216", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/IGBT B(H)", + "Reference":"ee_lib\/Semiconductors &\nConverters\/IGBT\n(Ideal,\nSwitching)", + "SID":"1217", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/IGBT B(L)", + "Reference":"ee_lib\/Semiconductors &\nConverters\/IGBT\n(Ideal,\nSwitching)", + "SID":"1218", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/IGBT C(H)", + "Reference":"ee_lib\/Semiconductors &\nConverters\/IGBT\n(Ideal,\nSwitching)", + "SID":"1219", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/IGBT C(L)", + "Reference":"ee_lib\/Semiconductors &\nConverters\/IGBT\n(Ideal,\nSwitching)", + "SID":"1220", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/Phase Splitter", + "Reference":"ee_lib\/Connectors &\nReferences\/Phase Splitter", + "SID":"1221", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/Simulink-PS G1", + "Reference":"nesl_utility\/Simulink-PS\nConverter", + "SID":"1222", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/Simulink-PS G2", + "Reference":"nesl_utility\/Simulink-PS\nConverter", + "SID":"1223", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/Simulink-PS G3", + "Reference":"nesl_utility\/Simulink-PS\nConverter", + "SID":"1224", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/Simulink-PS G4", + "Reference":"nesl_utility\/Simulink-PS\nConverter", + "SID":"1225", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/Simulink-PS G5", + "Reference":"nesl_utility\/Simulink-PS\nConverter", + "SID":"1226", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Three-phase Inverter\/Simulink-PS G6", + "Reference":"nesl_utility\/Simulink-PS\nConverter", + "SID":"1227", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Motor Drive\/Voltage Sensor", + "Reference":"fl_lib\/Electrical\/Electrical Sensors\/Voltage Sensor", + "SID":"1232", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Simulink-PS Converter1", + "Reference":"nesl_utility\/Simulink-PS\nConverter", + "SID":"922", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Solver Configuration1", + "Reference":"nesl_utility\/Solver\nConfiguration", + "SID":"608", + "Type":"LIBRARY_BLOCK" + }, + { + "Path":"$bdroot\/Torque Source", + "Reference":"fl_lib\/Mechanical\/Mechanical Sources\/Ideal Torque Source", + "SID":"920", + "Type":"LIBRARY_BLOCK" + } + ], + "OrderedModelArguments":false, + "PreCompExecutionDomainType":"Unset", + "SimulinkSubDomainType":"Simulink", + "SolverName":"VariableStepAuto", + "TestPointedSignals":[ + { + "Decimation":2, + "FullBlockPath":"$bdroot\/Constant Target Speed", + "LogSignal":true, + "MaxPoints":5000, + "SignalName":"Target Speed" + }, + { + "Decimation":2, + "FullBlockPath":"$bdroot\/Step Load Torque", + "LogSignal":true, + "MaxPoints":5000, + "SignalName":"Load Torque" + }, + { + "Decimation":2, + "FullBlockPath":"$bdroot\/Motor Drive\/Filter", + "LogSignal":true, + "MaxPoints":5000, + "SignalName":"PMSM Phase Voltages" + }, + { + "Decimation":2, + "FullBlockPath":"$bdroot\/Motor Drive\/PS-Simulink Converter", + "LogSignal":true, + "MaxPoints":5000, + "SignalName":"PMSM Phase Currents" + }, + { + "Decimation":2, + "FullBlockPath":"$bdroot\/Motor Drive\/Encoder\/PS-S1", + "LogSignal":true, + "MaxPoints":5000, + "SignalName":"Motor Torque" + }, + { + "Decimation":2, + "FullBlockPath":"$bdroot\/Motor Drive\/Encoder\/PS-S2", + "LogSignal":true, + "MaxPoints":5000, + "SignalName":"Motor Speed" + }, + { + "Decimation":2, + "FullBlockPath":"$bdroot\/Motor Drive\/PMSM Controller\/Signal Specification2", + "LogSignal":true, + "MaxPoints":5000, + "SignalName":"FOC_TrqRef_Nm" + }, + { + "Decimation":2, + "FullBlockPath":"$bdroot\/Scope\/Bus Selector", + "LogSignal":true, + "MaxPoints":5000, + "SignalName":"" + } + ] + } +} __MWOPC_PART_BEGIN__ /simulink/hdlParams.xml @@ -1572,7 +2103,7 @@ __MWOPC_PART_BEGIN__ /simulink/plugins/SimscapeModelParametersPlugin.xml __MWOPC_PART_BEGIN__ /simulink/ScheduleCore.xml - + HighNumberLast @@ -1642,7 +2173,7 @@ __MWOPC_PART_BEGIN__ /simulink/ScheduleCore.xml __MWOPC_PART_BEGIN__ /simulink/ScheduleEditor.xml - + @@ -1708,7 +2239,7 @@ __MWOPC_PART_BEGIN__ /simulink/stateflow/machine.xml -

80000068

+

82450000

[1628800410 2360362788 920756369 2486974428]

@@ -1747,11 +2278,13 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1138.xml

on

left

%<dc_voltage> (%<dc_voltage_unit>)

-

23002000.3

+

24002000.3

ee_lib/Sources/Voltage Source

Voltage Source

off

+

off

+

ee.sources.voltage_source

{"Bottom":[],"Left":[{"id":"p","label":"+","type":"foundation.electrical.electrical"}],"Right":[{"id":"n","label":"-","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -1795,15 +2328,15 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1138.xml

0

A

off

-

A

1

+

A

off

None

0

V

off

-

V

1

+

V

@@ -1857,8 +2390,8 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1147.xml

[11, 13, 1346, 710]

0

-

{"entries":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":null,"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":{"content":{"attrsOfChildren":[{"type":"treeNode.ChildAttributes","uuid":"245d2240-6daf-4e91-b648-cec6abe162da"},{"type":"treeNode.ChildAttributes","uuid":"2e490682-e044-493f-b567-432170570075"}],"children":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"8a526d9e-15f5-4fbd-8617-e0387a53f013"},"indexOne":1,"name":"motorSpd"},"type":"treeNode.ChildAttributes","uuid":"245d2240-6daf-4e91-b648-cec6abe162da"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rpm"},"type":"treeNode.SignalAttributes","uuid":"5d556084-665c-4e85-9775-6350bfae756b"}},"type":"treeNode.TreeNode","uuid":"7ab7160c-92b7-4584-b6d5-808c041bcd7e"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"8a526d9e-15f5-4fbd-8617-e0387a53f013"},"indexOne":2,"name":"motorTrq"},"type":"treeNode.ChildAttributes","uuid":"2e490682-e044-493f-b567-432170570075"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"N*m"},"type":"treeNode.SignalAttributes","uuid":"75ab9051-a980-4177-8842-adf55fddeada"}},"type":"treeNode.TreeNode","uuid":"42d34428-cd35-4fc4-a815-cceec57dbb2f"}]},"type":"treeNode.ParentAttributes","uuid":"8a526d9e-15f5-4fbd-8617-e0387a53f013"},"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"8c5bd320-5e82-44cf-a008-7a2ba2608083"}],"packageUris":["http://schema.mathworks.com/mf0/mm_tree_node_datamodel/R2018b"],"version":"1.0"}

-

{"port-tree":{"bep-out":{"1":"8c5bd320-5e82-44cf-a008-7a2ba2608083"}}}

+

{"entries":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":null,"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":{"content":{"attrsOfChildren":[{"type":"treeNode.ChildAttributes","uuid":"e1e60e75-d2e7-4faa-96c6-6b52d542e263"},{"type":"treeNode.ChildAttributes","uuid":"099f7abd-3233-4ea0-a87b-35a2e5bd76b5"}],"children":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"2c7a63c5-001d-41a6-88ba-5a5028a008a9"},"indexOne":1,"name":"motorSpd"},"type":"treeNode.ChildAttributes","uuid":"e1e60e75-d2e7-4faa-96c6-6b52d542e263"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rpm"},"type":"treeNode.SignalAttributes","uuid":"5b9b5d61-1f98-4adb-b956-8e84d9a43ca9"}},"type":"treeNode.TreeNode","uuid":"2bda0a5d-a963-4ce7-a36e-4e9579049098"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"2c7a63c5-001d-41a6-88ba-5a5028a008a9"},"indexOne":2,"name":"motorTrq"},"type":"treeNode.ChildAttributes","uuid":"099f7abd-3233-4ea0-a87b-35a2e5bd76b5"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"N*m"},"type":"treeNode.SignalAttributes","uuid":"9e21f660-911b-4baf-996d-1329f593a16b"}},"type":"treeNode.TreeNode","uuid":"5a00b0a0-9476-49fe-8158-386352ef48c8"}]},"type":"treeNode.ParentAttributes","uuid":"2c7a63c5-001d-41a6-88ba-5a5028a008a9"},"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"5625c007-3e4f-4f73-b40a-1ae2cc99bdcc"}],"packageUris":["http://schema.mathworks.com/mf0/mm_tree_node_datamodel/R2018b"],"version":"1.0"}

+

{"port-tree":{"bep-out":{"1":"5625c007-3e4f-4f73-b40a-1ae2cc99bdcc"}}}

[85, 73, 115, 87]

@@ -1886,7 +2419,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1147.xml

[450, 215, 530, 295]

4442

off

-

23002000.3

+

24002000.3

ee_lib/Sensors & Transducers/Current Sensor (Three-Phase)

@@ -1894,6 +2427,8 @@ Transducers/Current Sensor (Three-Phase)

off

+

off

+

ee.sensors.current.abc

{"Bottom":[],"Left":[{"id":"N1","label":"~1","type":"foundation.electrical.three_phase"}],"Right":[{"id":"I_output","label":"I","type":"output"},{"id":"N2","label":"~2","type":"foundation.electrical.three_phase"}],"Top":[]}

off

@@ -1909,11 +2444,13 @@ Transducers/Current Sensor

[145, 125, 165, 145]

4455

on

-

23002000.2

+

24002000.1

fl_lib/Electrical/Electrical Elements/Electrical Reference

Electrical Reference

off

+

off

+

foundation.electrical.elements.reference

{"Bottom":[],"Left":[{"id":"V","label":"","type":"foundation.electrical.electrical"}],"Right":[],"Top":[]}

off

@@ -1941,13 +2478,15 @@ Transducers/Current Sensor

[685, 228, 790, 322]

7186

off

-

23002000.3

+

24002000.3

ee_lib/Electromechanical/Permanent Magnet/FEM-Parameterized PMSM

FEM-Parameterized PMSM

on

+

off

+

ee.electromech.pmsm.fem_motor.fem_motor_dq0

{"Bottom":[],"Left":[{"id":"a","label":"a","type":"foundation.electrical.electrical"},{"id":"b","label":"b","type":"foundation.electrical.electrical"},{"id":"c","label":"c","type":"foundation.electrical.electrical"}],"Right":[{"id":"R","label":"R","type":"foundation.mechanical.rotational.rotational"},{"id":"C","label":"C","type":"foundation.mechanical.rotational.rotational"}],"Top":[]}

off

@@ -1995,12 +2534,12 @@ PMSM

0.1 * ones(3, 3)

Wb

compiletime

-

6

-

1

-

compiletime

simscape.enum.interpolation.linear

1

compiletime

+

6

+

1

+

compiletime

PmsmFem.Rs_Ohm

Ohm

compiletime

@@ -2036,45 +2575,45 @@ PMSM

PmsmFem.initialDAxisCurrent_A

A

off

-

A

1

+

A

on

High

PmsmFem.initialQAxisCurrent_A

A

off

-

A

1

+

A

off

None

0

N*m

off

-

N*m

1

+

N*m

on

None

0

rpm

off

-

rpm

1

+

rpm

on

High

PmsmFem.initialRotorAngle_rad

rad

off

-

deg

1

-

298.15

-

K

-

compiletime

+

deg

3.93e-3

1/K

compiletime

-0.001

1/K

compiletime

+

298.15

+

K

+

compiletime

100

J/K

compiletime

@@ -2231,12 +2770,12 @@ PMSM

zeros(3, 3, 2)

W

compiletime

-

zeros(3, 5, 2)

-

W

-

compiletime

zeros(3, 3, 2)

W

compiletime

+

zeros(3, 5, 2)

+

W

+

compiletime

zeros(3, 5, 2)

W

compiletime

@@ -2245,22 +2784,22 @@ PMSM

0

N*m

off

-

N*m

1

+

N*m

off

None

0

J/s

off

-

J/s

1

+

J/s

off

None

0

J/s

off

-

J/s

1

+

J/s

@@ -2283,7 +2822,7 @@ PMSM

on

right

off

-

23002000.3

+

24002000.3

ee_lib/Sensors & Transducers/Line Voltage Sensor (Three-Phase)

@@ -2291,6 +2830,8 @@ Transducers/Line Voltage Sensor (Three-Phase)

off

+

off

+

ee.sensors.voltage.line.abc

{"Bottom":[],"Left":[{"id":"N","label":"~","type":"foundation.electrical.three_phase"}],"Right":[{"id":"V_output","label":"V","type":"output"}],"Top":[]}

off

@@ -2309,13 +2850,15 @@ Transducers/Line Voltage Sensor

on

right

off

-

23002000.2

+

24002000.1

fl_lib/Mechanical/Rotational Elements/Mechanical Rotational Reference

Mechanical Rotational Reference

off

+

off

+

foundation.mechanical.rotational.reference

{"Bottom":[],"Left":[{"id":"W","label":"","type":"foundation.mechanical.rotational.rotational"}],"Right":[],"Top":[]}

off

@@ -2436,12 +2979,14 @@ Converter

[590, 231, 625, 319]

4437

off

-

23002000.3

+

24002000.3

ee_lib/Connectors & References/Phase Splitter

Phase Splitter

off

+

off

+

ee.connectors.phase_splitter.abc

{"Bottom":[],"Left":[{"id":"N","label":"~","type":"foundation.electrical.three_phase"}],"Right":[{"id":"a","label":"a","type":"foundation.electrical.electrical"},{"id":"b","label":"b","type":"foundation.electrical.electrical"},{"id":"c","label":"c","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -2485,11 +3030,13 @@ References/Phase Splitter

on

left

off

-

23002000.2

+

24002000.1

fl_lib/Electrical/Electrical Sensors/Voltage Sensor

Voltage Sensor

off

+

off

+

foundation.electrical.sensors.voltage

{"Bottom":[],"Left":[{"id":"p","label":"+","type":"foundation.electrical.electrical"}],"Right":[{"id":"V","label":"V","type":"output"},{"id":"n","label":"-","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -2716,8 +3263,8 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1154.xml

[1247, 805, 2582, 1502]

0

-

{"entries":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":null,"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":{"content":{"attrsOfChildren":[{"type":"treeNode.ChildAttributes","uuid":"56f03077-3a2f-4d6d-be61-c9538fe7184c"},{"type":"treeNode.ChildAttributes","uuid":"2b94a67d-9e15-4260-927c-d499bdf8e675"}],"children":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"6232bc63-aab6-4e20-8fd8-e6d89c44a887"},"indexOne":1,"name":"w"},"type":"treeNode.ChildAttributes","uuid":"56f03077-3a2f-4d6d-be61-c9538fe7184c"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rad/s"},"type":"treeNode.SignalAttributes","uuid":"55e2cec9-ed9d-4b71-bc88-5e590102b748"}},"type":"treeNode.TreeNode","uuid":"ea849248-dbbe-4e4e-a3ba-8894835a4b8e"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"6232bc63-aab6-4e20-8fd8-e6d89c44a887"},"indexOne":2,"name":"a"},"type":"treeNode.ChildAttributes","uuid":"2b94a67d-9e15-4260-927c-d499bdf8e675"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rad"},"type":"treeNode.SignalAttributes","uuid":"3bb32486-f78f-47a3-a3ae-ba7c4c399377"}},"type":"treeNode.TreeNode","uuid":"a03800e5-a089-47bd-9591-02ebdeffb70e"}]},"type":"treeNode.ParentAttributes","uuid":"6232bc63-aab6-4e20-8fd8-e6d89c44a887"},"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"e7191c6b-518f-4d40-92e0-fbb03adc8841"}],"packageUris":["http://schema.mathworks.com/mf0/mm_tree_node_datamodel/R2018b"],"version":"1.0"}

-

{"port-tree":{"bep-out":{"1":"e7191c6b-518f-4d40-92e0-fbb03adc8841"}}}

+

{"entries":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":null,"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":{"content":{"attrsOfChildren":[{"type":"treeNode.ChildAttributes","uuid":"3f456ad1-7620-416d-aa29-40b819cb3207"},{"type":"treeNode.ChildAttributes","uuid":"08fe6839-2567-4ddb-af5b-f1726c7c2d9e"}],"children":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"39ccb16c-a1b3-4276-8960-b017880edf04"},"indexOne":1,"name":"w"},"type":"treeNode.ChildAttributes","uuid":"3f456ad1-7620-416d-aa29-40b819cb3207"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rad/s"},"type":"treeNode.SignalAttributes","uuid":"0f1a7306-c590-4b0d-a041-a3e29dbbb033"}},"type":"treeNode.TreeNode","uuid":"fa934e02-dcb1-418b-8160-fb6bfecc21bb"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"39ccb16c-a1b3-4276-8960-b017880edf04"},"indexOne":2,"name":"a"},"type":"treeNode.ChildAttributes","uuid":"08fe6839-2567-4ddb-af5b-f1726c7c2d9e"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rad"},"type":"treeNode.SignalAttributes","uuid":"30c1a0e0-0ff2-4cc8-b380-a5c05747e9af"}},"type":"treeNode.TreeNode","uuid":"f4cbc449-13bb-42e6-aaca-f3b8f65ba835"}]},"type":"treeNode.ParentAttributes","uuid":"39ccb16c-a1b3-4276-8960-b017880edf04"},"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"daadc2b0-3d0e-49d4-877e-6aa562455860"}],"packageUris":["http://schema.mathworks.com/mf0/mm_tree_node_datamodel/R2018b"],"version":"1.0"}

+

{"port-tree":{"bep-out":{"1":"daadc2b0-3d0e-49d4-877e-6aa562455860"}}}

@@ -2727,13 +3274,15 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1154.xml

on

right

off

-

23002000.2

+

24002000.1

fl_lib/Mechanical/Rotational Elements/Mechanical Rotational Reference

Mechanical Rotational Reference

off

+

off

+

foundation.mechanical.rotational.reference

{"Bottom":[],"Left":[{"id":"W","label":"","type":"foundation.mechanical.rotational.rotational"}],"Right":[],"Top":[]}

off

@@ -2853,13 +3402,15 @@ Converter

180

on

off

-

23002000.2

+

24002000.1

fl_lib/Mechanical/Mechanical Sensors/Ideal Rotational Motion Sensor

Ideal Rotational Motion Sensor

on

+

off

+

foundation.mechanical.sensors.angular_velocity

{"Bottom":[],"Left":[{"id":"R","label":"R","type":"foundation.mechanical.rotational.rotational"}],"Right":[{"id":"C","label":"C","type":"foundation.mechanical.rotational.rotational"},{"id":"W","label":"W","type":"output"},{"id":"A","label":"A","type":"output"}],"Top":[]}

off

@@ -2895,11 +3446,13 @@ Motion Sensor

180

on

off

-

23002000.2

+

24002000.1

fl_lib/Mechanical/Mechanical Sensors/Ideal Torque Sensor

Ideal Torque Sensor

on

+

off

+

foundation.mechanical.sensors.torque

{"Bottom":[],"Left":[{"id":"R","label":"R","type":"foundation.mechanical.rotational.rotational"}],"Right":[{"id":"C","label":"C","type":"foundation.mechanical.rotational.rotational"},{"id":"T","label":"T","type":"output"}],"Top":[]}

off

@@ -3033,7 +3586,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1166.xml

[300, 17, 350, 53]

4416

-

6.0

+

8.1

spsFirstOrderFilterLib/First-Order Filter

First-Order Filter

@@ -3058,7 +3611,7 @@ Filter

[150, 17, 200, 53]

4415

-

6.0

+

8.1

spsFirstOrderFilterLib/First-Order Filter

First-Order Filter

@@ -3083,7 +3636,7 @@ Filter

[75, 17, 125, 53]

4413

-

6.0

+

8.1

spsFirstOrderFilterLib/First-Order Filter

First-Order Filter

@@ -3108,7 +3661,7 @@ Filter

[225, 17, 275, 53]

4414

-

6.0

+

8.1

spsFirstOrderFilterLib/First-Order Filter

First-Order Filter

@@ -3167,8 +3720,8 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1182.xml

[47, 458, 1382, 1155]

0

-

{"entries":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":null,"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":{"content":{"attrsOfChildren":[{"type":"treeNode.ChildAttributes","uuid":"b13a4d97-a420-4b5a-9266-a68fb5eb4e4f"},{"type":"treeNode.ChildAttributes","uuid":"16fa3ed8-5434-4350-b50e-8c2332140245"}],"children":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"3a5da89c-07df-4533-9c7b-428ea2efdf59"},"indexOne":1,"name":"w"},"type":"treeNode.ChildAttributes","uuid":"b13a4d97-a420-4b5a-9266-a68fb5eb4e4f"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rad/s"},"type":"treeNode.SignalAttributes","uuid":"57f5c31a-8735-4082-bb2c-54ac6af6c0f6"}},"type":"treeNode.TreeNode","uuid":"f9710db9-b693-4997-b5f8-2ab1e2ff73b4"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"3a5da89c-07df-4533-9c7b-428ea2efdf59"},"indexOne":2,"name":"a"},"type":"treeNode.ChildAttributes","uuid":"16fa3ed8-5434-4350-b50e-8c2332140245"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rad"},"type":"treeNode.SignalAttributes","uuid":"2a9ab866-2f88-4560-a57d-29acbc0b3483"}},"type":"treeNode.TreeNode","uuid":"0346690d-d8da-481e-a2dc-aa286906591d"}]},"type":"treeNode.ParentAttributes","uuid":"3a5da89c-07df-4533-9c7b-428ea2efdf59"},"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"f0b3615e-56f0-456d-835b-f87d3a20309a"}],"packageUris":["http://schema.mathworks.com/mf0/mm_tree_node_datamodel/R2018b"],"version":"1.0"}

-

{"port-tree":{"bep-in":{"1":"f0b3615e-56f0-456d-835b-f87d3a20309a"}}}

+

{"entries":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":null,"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":{"content":{"attrsOfChildren":[{"type":"treeNode.ChildAttributes","uuid":"7015f79d-33a4-4adc-956c-2fe4f2409a1b"},{"type":"treeNode.ChildAttributes","uuid":"7e01863b-6681-4115-b5b3-8f0af00ec2dd"}],"children":[{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"5b965cca-210f-4a8d-a3ef-bb6dd41f97e8"},"indexOne":1,"name":"w"},"type":"treeNode.ChildAttributes","uuid":"7015f79d-33a4-4adc-956c-2fe4f2409a1b"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rad/s"},"type":"treeNode.SignalAttributes","uuid":"0d36bd0e-1707-4d75-87ff-72db78c8f9e1"}},"type":"treeNode.TreeNode","uuid":"ef094e91-0ee7-45c9-b96b-8e16938f6bc3"},{"content":{"blockAttrs":null,"busTypeElementAttrs":null,"busTypeRootAttrs":null,"childAttrs":{"content":{"attrsOfParent":{"type":"treeNode.ParentAttributes","uuid":"5b965cca-210f-4a8d-a3ef-bb6dd41f97e8"},"indexOne":2,"name":"a"},"type":"treeNode.ChildAttributes","uuid":"7e01863b-6681-4115-b5b3-8f0af00ec2dd"},"inheritedParentAttrs":null,"msgQueueAttrs":null,"parentAttrs":null,"platformAttrs":null,"propAttrs":null,"signalAttrs":{"content":{"unit":"rad"},"type":"treeNode.SignalAttributes","uuid":"36f24c8c-6fe0-4d41-8c84-117af64f41d7"}},"type":"treeNode.TreeNode","uuid":"2f77d003-9244-4f29-9650-3a47872af1c2"}]},"type":"treeNode.ParentAttributes","uuid":"5b965cca-210f-4a8d-a3ef-bb6dd41f97e8"},"platformAttrs":null,"propAttrs":null,"signalAttrs":null},"type":"treeNode.TreeNode","uuid":"2acfdbae-1245-4468-afe0-2c4a34f505f6"}],"packageUris":["http://schema.mathworks.com/mf0/mm_tree_node_datamodel/R2018b"],"version":"1.0"}

+

{"port-tree":{"bep-in":{"1":"2acfdbae-1245-4468-afe0-2c4a34f505f6"}}}

[-140, 65, -130, 75]

@@ -3251,7 +3804,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1182.xml

[280, -133, 385, 273]

4573

off

-

7.1

+

9.0

eePmsmFieldOrientedControl/PMSM Field-Oriented Control

PMSM Field-Oriented Control

@@ -3566,7 +4119,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1212.xml

[50, -45, 80, 15]

36

-

23002000.3

+

24002000.3

ee_lib/Semiconductors & Converters/IGBT (Ideal, @@ -3576,6 +4129,8 @@ Switching)

Switching)

off

+

off

+

ee.semiconductors.ideal.igbt

{"Bottom":[],"Left":[{"id":"G","label":"","type":"input"}],"Right":[{"id":"C","label":"","type":"foundation.electrical.electrical"},{"id":"E","label":"","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -3640,22 +4195,22 @@ Switching)

0

A

off

-

A

1

+

A

off

None

0

V

off

-

V

1

+

V

off

None

0

V

off

-

V

1

+

V

ee.enum.converters.thermalLossOption.constantvalues

1

compiletime

@@ -3716,6 +4271,9 @@ Switching)

ee.enum.diode.tableType.IfMat

1

compiletime

+

ee.enum.diode.diodeReverseIV.constant

+

1

+

compiletime

[.07, .12, .19, 1.75, 4.24, 7.32, 11.2; .16, .3, .72, 2.14, 4.02, 6.35, 9.12]

A

compiletime

@@ -3731,6 +4289,18 @@ Switching)

[.1, .2, .5, 1, 2, 4, 7, 10]

A

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2.5e-05, 5e-05, .0001; 2e-06, 5e-06, 1e-05, 4e-05, 8e-05, .0002, .0005]

+

A

+

compiletime

+

[10, 100, 200, 250, 300, 325, 350; 10, 70, 160, 220, 270, 300, 320]

+

V

+

compiletime

+

[10, 20, 40, 50, 70, 80, 100]

+

V

+

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2e-05, 5e-05, .0001]

+

A

+

compiletime

-600

V

compiletime

@@ -3767,6 +4337,9 @@ Switching)

1 / 1000 / 100

s

compiletime

+

false

+

1

+

compiletime

ee.enum.thermalNetworkTopology.external

1

compiletime

@@ -3812,23 +4385,69 @@ Switching)

[25, 25, 25, 25]

degC

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[.03, .1, .2]

+

K/W

+

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[3, 25]

+

J/K

+

compiletime

+

[3, 10, 25]

+

J/K

+

compiletime

+

[33, 50]

+

J/K

+

compiletime

+

[.1, 5]

+

s

+

compiletime

+

[.1, 1, 5]

+

s

+

compiletime

+

[1, 10]

+

s

+

compiletime

+

[25, 25]

+

degC

+

compiletime

+

[25, 25, 25]

+

degC

+

compiletime

+

0.1

+

J/K

+

compiletime

+

[25, 25, 25, 25]

+

degC

+

compiletime

0

1

compiletime

-

off

-

None

-

25

-

degC

-

off

-

degC

-

1

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

off

None

0

W

off

-

W

1

+

W

off

None

0

@@ -3839,7 +4458,7 @@ Switching)

[50, 80, 80, 140]

37

-

23002000.3

+

24002000.3

ee_lib/Semiconductors & Converters/IGBT (Ideal, @@ -3849,6 +4468,8 @@ Switching)

Switching)

off

+

off

+

ee.semiconductors.ideal.igbt

{"Bottom":[],"Left":[{"id":"G","label":"","type":"input"}],"Right":[{"id":"C","label":"","type":"foundation.electrical.electrical"},{"id":"E","label":"","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -3913,22 +4534,22 @@ Switching)

0

A

off

-

A

1

+

A

off

None

0

V

off

-

V

1

+

V

off

None

0

V

off

-

V

1

+

V

ee.enum.converters.thermalLossOption.constantvalues

1

compiletime

@@ -3989,6 +4610,9 @@ Switching)

ee.enum.diode.tableType.IfMat

1

compiletime

+

ee.enum.diode.diodeReverseIV.constant

+

1

+

compiletime

[.07, .12, .19, 1.75, 4.24, 7.32, 11.2; .16, .3, .72, 2.14, 4.02, 6.35, 9.12]

A

compiletime

@@ -4004,6 +4628,18 @@ Switching)

[.1, .2, .5, 1, 2, 4, 7, 10]

A

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2.5e-05, 5e-05, .0001; 2e-06, 5e-06, 1e-05, 4e-05, 8e-05, .0002, .0005]

+

A

+

compiletime

+

[10, 100, 200, 250, 300, 325, 350; 10, 70, 160, 220, 270, 300, 320]

+

V

+

compiletime

+

[10, 20, 40, 50, 70, 80, 100]

+

V

+

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2e-05, 5e-05, .0001]

+

A

+

compiletime

-600

V

compiletime

@@ -4040,6 +4676,9 @@ Switching)

1 / 1000 / 100

s

compiletime

+

false

+

1

+

compiletime

ee.enum.thermalNetworkTopology.external

1

compiletime

@@ -4085,23 +4724,69 @@ Switching)

[25, 25, 25, 25]

degC

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[.03, .1, .2]

+

K/W

+

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[3, 25]

+

J/K

+

compiletime

+

[3, 10, 25]

+

J/K

+

compiletime

+

[33, 50]

+

J/K

+

compiletime

+

[.1, 5]

+

s

+

compiletime

+

[.1, 1, 5]

+

s

+

compiletime

+

[1, 10]

+

s

+

compiletime

+

[25, 25]

+

degC

+

compiletime

+

[25, 25, 25]

+

degC

+

compiletime

+

0.1

+

J/K

+

compiletime

+

[25, 25, 25, 25]

+

degC

+

compiletime

0

1

compiletime

-

off

-

None

-

25

-

degC

-

off

-

degC

-

1

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

off

None

0

W

off

-

W

1

+

W

off

None

0

@@ -4112,7 +4797,7 @@ Switching)

[215, -50, 245, 10]

38

-

23002000.3

+

24002000.3

ee_lib/Semiconductors & Converters/IGBT (Ideal, @@ -4122,6 +4807,8 @@ Switching)

Switching)

off

+

off

+

ee.semiconductors.ideal.igbt

{"Bottom":[],"Left":[{"id":"G","label":"","type":"input"}],"Right":[{"id":"C","label":"","type":"foundation.electrical.electrical"},{"id":"E","label":"","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -4186,22 +4873,22 @@ Switching)

0

A

off

-

A

1

+

A

off

None

0

V

off

-

V

1

+

V

off

None

0

V

off

-

V

1

+

V

ee.enum.converters.thermalLossOption.constantvalues

1

compiletime

@@ -4262,6 +4949,9 @@ Switching)

ee.enum.diode.tableType.IfMat

1

compiletime

+

ee.enum.diode.diodeReverseIV.constant

+

1

+

compiletime

[.07, .12, .19, 1.75, 4.24, 7.32, 11.2; .16, .3, .72, 2.14, 4.02, 6.35, 9.12]

A

compiletime

@@ -4277,6 +4967,18 @@ Switching)

[.1, .2, .5, 1, 2, 4, 7, 10]

A

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2.5e-05, 5e-05, .0001; 2e-06, 5e-06, 1e-05, 4e-05, 8e-05, .0002, .0005]

+

A

+

compiletime

+

[10, 100, 200, 250, 300, 325, 350; 10, 70, 160, 220, 270, 300, 320]

+

V

+

compiletime

+

[10, 20, 40, 50, 70, 80, 100]

+

V

+

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2e-05, 5e-05, .0001]

+

A

+

compiletime

-600

V

compiletime

@@ -4313,6 +5015,9 @@ Switching)

1 / 1000 / 100

s

compiletime

+

false

+

1

+

compiletime

ee.enum.thermalNetworkTopology.external

1

compiletime

@@ -4358,23 +5063,69 @@ Switching)

[25, 25, 25, 25]

degC

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[.03, .1, .2]

+

K/W

+

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[3, 25]

+

J/K

+

compiletime

+

[3, 10, 25]

+

J/K

+

compiletime

+

[33, 50]

+

J/K

+

compiletime

+

[.1, 5]

+

s

+

compiletime

+

[.1, 1, 5]

+

s

+

compiletime

+

[1, 10]

+

s

+

compiletime

+

[25, 25]

+

degC

+

compiletime

+

[25, 25, 25]

+

degC

+

compiletime

+

0.1

+

J/K

+

compiletime

+

[25, 25, 25, 25]

+

degC

+

compiletime

0

1

compiletime

-

off

-

None

-

25

-

degC

-

off

-

degC

-

1

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

off

None

0

W

off

-

W

1

+

W

off

None

0

@@ -4385,7 +5136,7 @@ Switching)

[215, 80, 245, 140]

39

-

23002000.3

+

24002000.3

ee_lib/Semiconductors & Converters/IGBT (Ideal, @@ -4395,6 +5146,8 @@ Switching)

Switching)

off

+

off

+

ee.semiconductors.ideal.igbt

{"Bottom":[],"Left":[{"id":"G","label":"","type":"input"}],"Right":[{"id":"C","label":"","type":"foundation.electrical.electrical"},{"id":"E","label":"","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -4459,22 +5212,22 @@ Switching)

0

A

off

-

A

1

+

A

off

None

0

V

off

-

V

1

+

V

off

None

0

V

off

-

V

1

+

V

ee.enum.converters.thermalLossOption.constantvalues

1

compiletime

@@ -4535,6 +5288,9 @@ Switching)

ee.enum.diode.tableType.IfMat

1

compiletime

+

ee.enum.diode.diodeReverseIV.constant

+

1

+

compiletime

[.07, .12, .19, 1.75, 4.24, 7.32, 11.2; .16, .3, .72, 2.14, 4.02, 6.35, 9.12]

A

compiletime

@@ -4550,6 +5306,18 @@ Switching)

[.1, .2, .5, 1, 2, 4, 7, 10]

A

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2.5e-05, 5e-05, .0001; 2e-06, 5e-06, 1e-05, 4e-05, 8e-05, .0002, .0005]

+

A

+

compiletime

+

[10, 100, 200, 250, 300, 325, 350; 10, 70, 160, 220, 270, 300, 320]

+

V

+

compiletime

+

[10, 20, 40, 50, 70, 80, 100]

+

V

+

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2e-05, 5e-05, .0001]

+

A

+

compiletime

-600

V

compiletime

@@ -4586,6 +5354,9 @@ Switching)

1 / 1000 / 100

s

compiletime

+

false

+

1

+

compiletime

ee.enum.thermalNetworkTopology.external

1

compiletime

@@ -4631,23 +5402,69 @@ Switching)

[25, 25, 25, 25]

degC

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[.03, .1, .2]

+

K/W

+

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[3, 25]

+

J/K

+

compiletime

+

[3, 10, 25]

+

J/K

+

compiletime

+

[33, 50]

+

J/K

+

compiletime

+

[.1, 5]

+

s

+

compiletime

+

[.1, 1, 5]

+

s

+

compiletime

+

[1, 10]

+

s

+

compiletime

+

[25, 25]

+

degC

+

compiletime

+

[25, 25, 25]

+

degC

+

compiletime

+

0.1

+

J/K

+

compiletime

+

[25, 25, 25, 25]

+

degC

+

compiletime

0

1

compiletime

-

off

-

None

-

25

-

degC

-

off

-

degC

-

1

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

off

None

0

W

off

-

W

1

+

W

off

None

0

@@ -4658,7 +5475,7 @@ Switching)

[380, -50, 410, 10]

40

-

23002000.3

+

24002000.3

ee_lib/Semiconductors & Converters/IGBT (Ideal, @@ -4668,6 +5485,8 @@ Switching)

Switching)

off

+

off

+

ee.semiconductors.ideal.igbt

{"Bottom":[],"Left":[{"id":"G","label":"","type":"input"}],"Right":[{"id":"C","label":"","type":"foundation.electrical.electrical"},{"id":"E","label":"","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -4732,22 +5551,22 @@ Switching)

0

A

off

-

A

1

+

A

off

None

0

V

off

-

V

1

+

V

off

None

0

V

off

-

V

1

+

V

ee.enum.converters.thermalLossOption.constantvalues

1

compiletime

@@ -4808,6 +5627,9 @@ Switching)

ee.enum.diode.tableType.IfMat

1

compiletime

+

ee.enum.diode.diodeReverseIV.constant

+

1

+

compiletime

[.07, .12, .19, 1.75, 4.24, 7.32, 11.2; .16, .3, .72, 2.14, 4.02, 6.35, 9.12]

A

compiletime

@@ -4823,6 +5645,18 @@ Switching)

[.1, .2, .5, 1, 2, 4, 7, 10]

A

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2.5e-05, 5e-05, .0001; 2e-06, 5e-06, 1e-05, 4e-05, 8e-05, .0002, .0005]

+

A

+

compiletime

+

[10, 100, 200, 250, 300, 325, 350; 10, 70, 160, 220, 270, 300, 320]

+

V

+

compiletime

+

[10, 20, 40, 50, 70, 80, 100]

+

V

+

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2e-05, 5e-05, .0001]

+

A

+

compiletime

-600

V

compiletime

@@ -4859,6 +5693,9 @@ Switching)

1 / 1000 / 100

s

compiletime

+

false

+

1

+

compiletime

ee.enum.thermalNetworkTopology.external

1

compiletime

@@ -4904,23 +5741,69 @@ Switching)

[25, 25, 25, 25]

degC

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[.03, .1, .2]

+

K/W

+

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[3, 25]

+

J/K

+

compiletime

+

[3, 10, 25]

+

J/K

+

compiletime

+

[33, 50]

+

J/K

+

compiletime

+

[.1, 5]

+

s

+

compiletime

+

[.1, 1, 5]

+

s

+

compiletime

+

[1, 10]

+

s

+

compiletime

+

[25, 25]

+

degC

+

compiletime

+

[25, 25, 25]

+

degC

+

compiletime

+

0.1

+

J/K

+

compiletime

+

[25, 25, 25, 25]

+

degC

+

compiletime

0

1

compiletime

-

off

-

None

-

25

-

degC

-

off

-

degC

-

1

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

off

None

0

W

off

-

W

1

+

W

off

None

0

@@ -4931,7 +5814,7 @@ Switching)

[380, 80, 410, 140]

41

-

23002000.3

+

24002000.3

ee_lib/Semiconductors & Converters/IGBT (Ideal, @@ -4941,6 +5824,8 @@ Switching)

Switching)

off

+

off

+

ee.semiconductors.ideal.igbt

{"Bottom":[],"Left":[{"id":"G","label":"","type":"input"}],"Right":[{"id":"C","label":"","type":"foundation.electrical.electrical"},{"id":"E","label":"","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -5005,22 +5890,22 @@ Switching)

0

A

off

-

A

1

+

A

off

None

0

V

off

-

V

1

+

V

off

None

0

V

off

-

V

1

+

V

ee.enum.converters.thermalLossOption.constantvalues

1

compiletime

@@ -5081,6 +5966,9 @@ Switching)

ee.enum.diode.tableType.IfMat

1

compiletime

+

ee.enum.diode.diodeReverseIV.constant

+

1

+

compiletime

[.07, .12, .19, 1.75, 4.24, 7.32, 11.2; .16, .3, .72, 2.14, 4.02, 6.35, 9.12]

A

compiletime

@@ -5096,6 +5984,18 @@ Switching)

[.1, .2, .5, 1, 2, 4, 7, 10]

A

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2.5e-05, 5e-05, .0001; 2e-06, 5e-06, 1e-05, 4e-05, 8e-05, .0002, .0005]

+

A

+

compiletime

+

[10, 100, 200, 250, 300, 325, 350; 10, 70, 160, 220, 270, 300, 320]

+

V

+

compiletime

+

[10, 20, 40, 50, 70, 80, 100]

+

V

+

compiletime

+

[1e-06, 2e-06, 5e-06, 1e-05, 2e-05, 5e-05, .0001]

+

A

+

compiletime

-600

V

compiletime

@@ -5132,6 +6032,9 @@ Switching)

1 / 1000 / 100

s

compiletime

+

false

+

1

+

compiletime

ee.enum.thermalNetworkTopology.external

1

compiletime

@@ -5177,23 +6080,69 @@ Switching)

[25, 25, 25, 25]

degC

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[.03, .1, .2]

+

K/W

+

compiletime

+

[.03, .2]

+

K/W

+

compiletime

+

[3, 25]

+

J/K

+

compiletime

+

[3, 10, 25]

+

J/K

+

compiletime

+

[33, 50]

+

J/K

+

compiletime

+

[.1, 5]

+

s

+

compiletime

+

[.1, 1, 5]

+

s

+

compiletime

+

[1, 10]

+

s

+

compiletime

+

[25, 25]

+

degC

+

compiletime

+

[25, 25, 25]

+

degC

+

compiletime

+

0.1

+

J/K

+

compiletime

+

[25, 25, 25, 25]

+

degC

+

compiletime

0

1

compiletime

-

off

-

None

-

25

-

degC

-

off

-

degC

-

1

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

+

off

+

None

+

25

+

degC

+

off

+

1

+

degC

off

None

0

W

off

-

W

1

+

W

off

None

0

@@ -5206,12 +6155,14 @@ Switching)

42

on

off

-

23002000.3

+

24002000.3

ee_lib/Connectors & References/Phase Splitter

Phase Splitter

off

+

off

+

ee.connectors.phase_splitter.abc

{"Bottom":[],"Left":[{"id":"N","label":"~","type":"foundation.electrical.three_phase"}],"Right":[{"id":"a","label":"a","type":"foundation.electrical.electrical"},{"id":"b","label":"b","type":"foundation.electrical.electrical"},{"id":"c","label":"c","type":"foundation.electrical.electrical"}],"Top":[]}

off

@@ -5731,7 +6682,7 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_1253.xml

[440, 19, 470, 121]

4424

off

-

Simulink.scopes.TimeScopeBlockCfg('CurrentConfiguration', extmgr.ConfigurationSet(extmgr.Configuration('Core','General UI',true),extmgr.Configuration('Core','Source UI',true),extmgr.Configuration('Sources','WiredSimulink',true),extmgr.Configuration('Visuals','Time Domain',true,'SerializedDisplays',{struct('MinYLimReal','1471.397','MaxYLimReal','1503.52871','YLabelReal','','MinYLimMag','1471.397','MaxYLimMag','1503.52871','LegendVisibility','On','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 1 0.0666666666666667;0.0745098039215686 0.623529411764706 1;1 0.411764705882353 0.16078431372549;0.392156862745098 0.831372549019608 0.0745098039215686;0.717647058823529 0.274509803921569 1;0.0588235294117647 1 1;1 0.0745098039215686 0.650980392156863],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',1),struct('MinYLimReal','-30.75426','MaxYLimReal','213.25261','YLabelReal','','MinYLimMag','1455.25038','MaxYLimMag','1505.02354','LegendVisibility','On','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 1 0.0666666666666667;0.0745098039215686 0.623529411764706 1;1 0.411764705882353 0.16078431372549;0.392156862745098 0.831372549019608 0.0745098039215686;0.717647058823529 0.274509803921569 1;0.0588235294117647 1 1;1 0.0745098039215686 0.650980392156863],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',2)},'DisplayPropertyDefaults',struct('YLabelReal','','AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[0.0745098039215686 0.623529411764706 1;1 0.411764705882353 0.16078431372549;1 1 0.0666666666666667;0.717647058823529 0.274509803921569 1;0.392156862745098 0.831372549019608 0.0745098039215686;0.0588235294117647 1 1;1 0.0745098039215686 0.650980392156863]),'DisplayLayoutDimensions',[2 1],'DisplayContentCache',[]),extmgr.Configuration('Tools','Plot Navigation',true,'PreviousAutoscale','XY'),extmgr.Configuration('Tools','Measurements',true,'Version','2023b')),'Version','2023b','Position',[829.8 384.2 698.4 341.6],'VisibleAtModelOpen','on')

+

Simulink.scopes.TimeScopeBlockCfg('CurrentConfiguration', extmgr.ConfigurationSet(extmgr.Configuration('Core','General UI',true),extmgr.Configuration('Core','Source UI',true),extmgr.Configuration('Sources','WiredSimulink',true),extmgr.Configuration('Visuals','Time Domain',true,'SerializedDisplays',{struct('MinYLimReal','1471.397','MaxYLimReal','1503.52871','YLabelReal','','MinYLimMag','1471.397','MaxYLimMag','1503.52871','LegendVisibility','On','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',1),struct('MinYLimReal','-30.75426','MaxYLimReal','213.25261','YLabelReal','','MinYLimMag','1455.25038','MaxYLimMag','1505.02354','LegendVisibility','On','XGrid',true,'YGrid',true,'PlotMagPhase',false,'AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[1 0.909803921568627 0.392156862745098;0.149019607843137 0.549019607843137 0.866666666666667;0.96078431372549 0.466666666666667 0.16078431372549;0.286274509803922 0.858823529411765 0.250980392156863;0.752941176470588 0.36078431372549 0.984313725490196;0.423529411764706 0.956862745098039 1;0.949019607843137 0.403921568627451 0.772549019607843],'Title','%<SignalLabel>','LinePropertiesCache',{{}},'UserDefinedChannelNames',{{}},'NumLines',0,'LineNames',{{[]}},'ShowContent',true,'Placement',2)},'DisplayPropertyDefaults',struct('YLabelReal','','AxesColor',[0 0 0],'AxesTickColor',[0.686274509803922 0.686274509803922 0.686274509803922],'ColorOrder',[0.0745098039215686 0.623529411764706 1;1 0.411764705882353 0.16078431372549;1 1 0.0666666666666667;0.717647058823529 0.274509803921569 1;0.392156862745098 0.831372549019608 0.0745098039215686;0.0588235294117647 1 1;1 0.0745098039215686 0.650980392156863]),'DisplayLayoutDimensions',[2 1],'DisplayContentCache',[]),extmgr.Configuration('Tools','Plot Navigation',true,'PreviousAutoscale','XY'),extmgr.Configuration('Tools','Measurements',true,'Version','2024b')),'Version','2024b','Position',[829.8 384.2 698.4 341.6],'VisibleAtModelOpen','on')

2

off

@@ -5823,11 +6774,13 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

on

right

off

-

23002000.2

+

24002000.1

fl_lib/Electrical/Electrical Elements/Electrical Reference

Electrical Reference

off

+

off

+

foundation.electrical.elements.reference

{"Bottom":[],"Left":[{"id":"V","label":"","type":"foundation.electrical.electrical"}],"Right":[],"Top":[]}

off

@@ -5893,11 +6846,13 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

3807

off

Initial %<w> %<w_unit>

-

23002000.2

+

24002000.1

fl_lib/Mechanical/Rotational Elements/Inertia

Inertia

off

+

off

+

foundation.mechanical.rotational.inertia

{"Bottom":[],"Left":[{"id":"I","label":"","type":"foundation.mechanical.rotational.rotational"}],"Right":[],"Top":[]}

off

@@ -5917,15 +6872,15 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

1500

rpm

off

-

rad/s

1

+

rad/s

off

High

0

N*m

off

-

N*m

1

+

N*m

@@ -5936,13 +6891,15 @@ __MWOPC_PART_BEGIN__ /simulink/systems/system_root.xml

on

right

off

-

23002000.2

+

24002000.1

fl_lib/Mechanical/Rotational Elements/Mechanical Rotational Reference

Mechanical Rotational Reference

off

+

off

+

foundation.mechanical.rotational.reference

{"Bottom":[],"Left":[{"id":"W","label":"","type":"foundation.mechanical.rotational.rotational"}],"Right":[],"Top":[]}

off

@@ -6090,11 +7047,13 @@ Step to %<After>

3832

on

off

-

23002000.2

+

24002000.1

fl_lib/Mechanical/Mechanical Sources/Ideal Torque Source

Ideal Torque Source

off

+

off

+

foundation.mechanical.sources.torque

{"Bottom":[],"Left":[{"id":"R","label":"R","type":"foundation.mechanical.rotational.rotational"}],"Right":[{"id":"S","label":"S","type":"input"},{"id":"C","label":"C","type":"foundation.mechanical.rotational.rotational"}],"Top":[]}

off

@@ -6211,7 +7170,7 @@ Step to %<After>

[0.901961, 0.901961, 1.000000]

on

area_annotation

-

402

+

403

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -6265,10 +7224,10 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

1

SimulinkTopLevel

0

-

[4055.0, 1455.0]

+

[6083.0, 2183.0]

1.0

-

[-197.40156249999995, -240.60206892463972]

-

[-197.40156249999995, -240.60206892463972, 1622.0, 582.0]

+

[-197.40156249999995, -240.60206892463975]

+

[-197.40156249999995, -240.60206892463975, 4055.0, 1455.0]

0

@@ -6883,19 +7842,6 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml -

Simulink:Editor:ReferencedFiles

-

Referenced Files

-

0

-

-

{"filterShowRefModels":"true","filterShowRefSubs":"true","filterShowOnlyDirtyFiles":"false"} -

-

0

-

Left

-

256

-

192

-

Unset

-
-

GLUE2:SpreadSheet

ModelData

0

@@ -6903,11 +7849,11 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

0

Bottom

-

256

-

192

+

426

+

320

Unset

- +

GLUE2:PropertyInspector

Property Inspector

0

@@ -6915,12 +7861,25 @@ __MWOPC_PART_BEGIN__ /simulink/windowsInfo.xml

0

Right

-

256

-

192

+

426

+

320

+

Unset

+
+ +

Simulink:Editor:ReferencedFiles

+

Referenced Files

+

0

+

+

{"filterShowRefModels":"true","filterShowRefSubs":"true","filterShowOnlyDirtyFiles":"false"} +

+

0

+

Left

+

426

+

320

Unset

-

AAAA/wAAAAD9AAAAAwAAAAAAAAC9AAAB+PwCAAAABPsAAAAWAEQAbwBjAGsAVwBpAGQAZwBlAHQAMwEAAAAxAAAB+AAAAAAAAAAA+wAAABYARABvAGMAawBXAGkAZABnAGUAdAA0AAAAAAD/////AAAAAAAAAAD7AAAAUgBHAEwAVQBFADIAIAB0AHIAZQBlACAAYwBvAG0AcABvAG4AZQBuAHQALwBHAEwAVQBFADIAIAB0AHIAZQBlACAAYwBvAG0AcABvAG4AZQBuAHQAAAAAAP////8AAAEAAP////sAAABgAFMAaQBtAHUAbABpAG4AawA6AEUAZABpAHQAbwByADoAUgBlAGYAZQByAGUAbgBjAGUAZABGAGkAbABlAHMALwBSAGUAZgBlAHIAZQBuAGMAZQBkACAARgBpAGwAZQBzAAAAAAD/////AAABOwD///8AAAABAAAC6QAAA8f8AgAAAAH8AAAAtQAAA8cAAAAAAP////oAAAABAgAAAAL7AAAAVABHAEwAVQBFADIAOgBQAHIAbwBwAGUAcgB0AHkASQBuAHMAcABlAGMAdABvAHIALwBQAHIAbwBwAGUAcgB0AHkAIABJAG4AcwBwAGUAYwB0AG8AcgAAAAAA/////wAABCgA////+wAAAF4ARwBMAFUARQAyADoATgBvAHQAZQBzACAAQgByAG8AdwBzAGUAcgAgAEMAbwBtAHAAbwBuAGUAbgB0AC8AUwB5AHMARABvAGMATQBpAHgAZQBkAEUAZABpAHQAbwByAAAAAAD/////AAAAAAAAAAAAAAADAAADNAAAAPj8AQAAAAL7AAAANgBHAEwAVQBFADIAOgBTAHAAcgBlAGEAZABTAGgAZQBlAHQALwBNAG8AZABlAGwARABhAHQAYQAAAAAAAAADNAAAAmgA////+/////8AAAAAAP////8AAANYAP///wAADQYAAAUgAAAAAQAAAAIAAAABAAAAAvwAAAABAAAAAgAAAAA=

+

AAAA/wAAAAD9AAAAAwAAAAAAAAC9AAAB+PwCAAAABPsAAAAWAEQAbwBjAGsAVwBpAGQAZwBlAHQAMwEAAAAxAAAB+AAAAAAAAAAA+wAAABYARABvAGMAawBXAGkAZABnAGUAdAA0AAAAAAD/////AAAAAAAAAAD7AAAAUgBHAEwAVQBFADIAIAB0AHIAZQBlACAAYwBvAG0AcABvAG4AZQBuAHQALwBHAEwAVQBFADIAIAB0AHIAZQBlACAAYwBvAG0AcABvAG4AZQBuAHQAAAAAAP////8AAACTAP////sAAABgAFMAaQBtAHUAbABpAG4AawA6AEUAZABpAHQAbwByADoAUgBlAGYAZQByAGUAbgBjAGUAZABGAGkAbABlAHMALwBSAGUAZgBlAHIAZQBuAGMAZQBkACAARgBpAGwAZQBzAAAAAAD/////AAAAxwD///8AAAABAAAC6QAAA8f8AgAAAAH8AAAAtQAAA8cAAAAAAP////oAAAABAgAAAAL7AAAAVABHAEwAVQBFADIAOgBQAHIAbwBwAGUAcgB0AHkASQBuAHMAcABlAGMAdABvAHIALwBQAHIAbwBwAGUAcgB0AHkAIABJAG4AcwBwAGUAYwB0AG8AcgAAAAAA/////wAAAoAA////+wAAAF4ARwBMAFUARQAyADoATgBvAHQAZQBzACAAQgByAG8AdwBzAGUAcgAgAEMAbwBtAHAAbwBuAGUAbgB0AC8AUwB5AHMARABvAGMATQBpAHgAZQBkAEUAZABpAHQAbwByAAAAAAD/////AAAAAAAAAAAAAAADAAADNAAAAPj8AQAAAAL7AAAANgBHAEwAVQBFADIAOgBTAHAAcgBlAGEAZABTAGgAZQBlAHQALwBNAG8AZABlAGwARABhAHQAYQAAAAAAAAADNAAAAYMA////+/////8AAAAAAP////8AAAOzAP///wAAB9EAAAMSAAAAAQAAAAIAAAABAAAAAvwAAAABAAAAAgAAAAA=

a69b867f-36ae-4c1b-a699-d31d4fd73954

diff --git a/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_testParams.m b/FYI/MotorDrivePmsmFem/MotorDrive_testParams.m similarity index 100% rename from DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_testParams.m rename to FYI/MotorDrivePmsmFem/MotorDrive_testParams.m diff --git a/DetailedModelApplications/MotorPmsmFem/PmsmFemParams.m b/FYI/MotorPmsmFem/PmsmFemParams.m similarity index 100% rename from DetailedModelApplications/MotorPmsmFem/PmsmFemParams.m rename to FYI/MotorPmsmFem/PmsmFemParams.m diff --git a/DetailedModelApplications/MotorPmsmFem/PmsmFemRefSub.mdl b/FYI/MotorPmsmFem/PmsmFemRefSub.mdl similarity index 100% rename from DetailedModelApplications/MotorPmsmFem/PmsmFemRefSub.mdl rename to FYI/MotorPmsmFem/PmsmFemRefSub.mdl diff --git a/DetailedModelApplications/MotorPmsmFem/PmsmFem_ParamData.mat b/FYI/MotorPmsmFem/PmsmFem_ParamData.mat similarity index 100% rename from DetailedModelApplications/MotorPmsmFem/PmsmFem_ParamData.mat rename to FYI/MotorPmsmFem/PmsmFem_ParamData.mat diff --git a/DetailedModelApplications/MotorPmsmFem/PmsmFem_testHarness.mdl b/FYI/MotorPmsmFem/PmsmFem_testHarness.mdl similarity index 100% rename from DetailedModelApplications/MotorPmsmFem/PmsmFem_testHarness.mdl rename to FYI/MotorPmsmFem/PmsmFem_testHarness.mdl diff --git a/README.md b/README.md index c5795407..f3099712 100644 --- a/README.md +++ b/README.md @@ -1,215 +1,237 @@ -# Battery Electric Vehicle Model in Simscape™ - -[![View Battery Electric Vehicle Model in Simscape on File Exchange](https://www.mathworks.com/matlabcentral/images/matlab-file-exchange.svg)](https://www.mathworks.com/matlabcentral/fileexchange/82250-battery-electric-vehicle-model-in-simscape) - -Version 2.5 - -## Introduction - -This is a MATLAB® Project containing -a [Battery Electric Vehicle (BEV) model](BEV/README.md) and -its components such as -motor, high voltage battery, and longitudinal vehicle. -This project demonstrates Simscape's modular and -multi-fidelity modeling technology. - -The abstract BEV model is built in a simple and modular fashion, -and it can run faster than real-time. -It is suitable as a baseline model for drive cycle simulation -to estimate vehicle's electrical efficiency and -other vehicle-level information. - -This project also contains the model of a detailed -permanent magnet synchronous motor (PMSM) and controller. -It captures the detailed behaviors of the AC motor drive unit -and can estimate the electrical efficiency at the unit level. - -A Live Script demonstrates how to obtain the electrical efficiency -from the slow but detailed motor drive unit and use the result -as the block parameter of the simple but fast motor drive block -in the BEV model. - -Screenshot of the battery electric vehicle model - -Screenshot of the simulation result plots - -BEV Project Navigator App - -Screenshot of the longitudinal vehicle performance design app - -Vehicle1D Performance Design App - -Screenshot of the longitudinal vehicle performance design app - -Motor Drive Unit Efficiency App for System Thermal Model - -Screenshot of the motor drive unit efficiency app for system thermal model - -Motor Drive Unit App - -Screenshot of the motor drive unit app - -## What's New in 2.5 (June, 2025) - -BEV Project - -- The BEV Project Navigator app has been updated. - -Motor Drive Unit component - -- The folder organization of the component has been updated. - Different models are stored in different folders. - Related files for a model such as test scripts and apps are put in the same folder. -- Motor Drive Unit Efficiency apps have been added to the Basic model and - the System Thermal model. -- Motor Drive Unit App has been added to help select MDU model and simulation case. -- The Build Tool is used to check code and run tests. - -Vehicle1D component - -- The folder organization of the component has been updated. -- Vehicle1D Performance Design app has been updated. -- The Build Tool is used to check code and run tests. - -## What's New in 2.4 (November, 2024) - -- The project has been updated to MATLAB R2024b with some clean ups. -- Added brief entry-point descriptions about MATLAB project and Git - to [Using MATLAB Project](docs/Using-MATLAB-Project.md). - The page also provides links to product documentation for more information. - -## What's New in 2.3 (June, 2024) - -- The project has been updated to MATLAB R2024a. -- Vehicle1D performance design app is added. -- For veiwing Live Scripts in the GitHub web site in the browser, - they are converted to Markdown files and collected in the Markdown folder. - -## What's New in 2.2 (September, 2023) - -- The project has been updated to MATLAB R2023b. -- [MATLAB Build Tool][url-buildtool] is used to automate tasks - to generate HTML files and Jupyter notebooks from all Live Scripts - in the project. -- GitHub Actions has been updated to generate and upload - test report and coverage report. -- GitHub Actions also generates Jupyter notebooks from Live Scripts. - Jupyter notebooks can be viewed in the repo in the browser. - -[url-buildtool]: https://www.mathworks.com/help/matlab/matlab_prog/overview-of-matlab-build-tool.html - -## What's New in 2.1 (March, 2023) - -- The project has been updated to MATLAB R2023a. -- A shortcut button to open **MATLAB Test Manager** - is added in the Project Shortcuts tab of the toolstrip. - MATLAB Test Manager requires the **MATLAB Test** license. - -See [Change Log](ChangeLog.md) for more details. - -## What's New in 2.0 (February, 2023) - -- BEV system model uses updated components and - has simpler and easier configurability - for selecting vehicle speed reference input. -- High voltage battery component provides - four different models: - **Basic**, **System simple**, **System**, and **System tabulated**. - They are all system level models and abstract, - but they prodive different fidelity levels of the model. - See [README](./Components/BatteryHighVoltage/README.md) in - **Components > BatteryHighVoltage** for more details. -- Motor drive unit component provides - four different models: - **Basic**, **Basic thermal**, **System**, and **System tabulated**. - They are all system level models and abstract, - but they prodive different fidelity levels of the model. - See [README](./Components/MotorDriveUnit/README.md) in - **Components > MotorDriveUnit** for more details. -- A detailed battery model built with a custom Simscape library - has been removed. - [This project][url-bev] will remain focused - on vehicle system-level applications using abstract models - in future updates. - A new project [Electric Vehicle Design with Simscape][url-bev-design] - serves as an alternative for detailed model applications. - -See [Change Log](ChangeLog.md) for more details. - -## Tool Requirements - -Supported MATLAB Version: -R2024b or newer releases - -Required: -[MATLAB](https://www.mathworks.com/products/matlab.html), -[Simulink®](https://www.mathworks.com/products/simulink.html), -[Powertrain Blockset](https://www.mathworks.com/products/powertrain.html), -[Simscape](https://www.mathworks.com/products/simscape.html), -[Simscape Driveline™](https://www.mathworks.com/products/simscape-driveline.html), -[Simscape Electrical™](https://www.mathworks.com/products/simscape-electrical.html) - -Optional: -[MATLAB Test](https://www.mathworks.com/products/matlab-test.html), -[Parallel Computing Toolbox™](https://www.mathworks.com/products/parallel-computing.html) - -## How to Use - -Open `BatteryElectricVehicle.prj` in MATLAB, and -it will automatically open the project main page `BEV_main_script.html`. -The script contains the description of the model and -hyperlinks to models and scripts. - -## How to Use in MATLAB Online - -You can try this in [MATLAB Online][url_online]. -In MATLAB Online, from the **HOME** tab in the toolstrip, -select **Add-Ons** > **Get Add-Ons** -to open the Add-On Explorer. -Then search for the submission name, -navigate to the submission page, -click **Add** button, and select **Save to MATLAB Drive**. - -[url_online]: https://www.mathworks.com/products/matlab-online.html - -## Additional Notes - -- [Using MATLAB Project](docs/Using-MATLAB-Project.md) - -- [MATLAB Testing Framework](docs/MATLAB-Testing-Framework.md) - -## See Also - -[Hybrid Electric Vehicle Model in Simscape][url-hev-powersplit] -provides an abstract power-split HEV model. -The level of abstraction is similar to -this [BEV model in Simscape][url-bev] project. - -[Electric Vehicle Design with Simscape][url-bev-design] -provides BEV design workflows using detailed models -for detailed analysis. -Note that the [BEV model in Simscape][url-bev] project -(the current project you are viewing) is focused on -vehicle system-level applications using abstract models. - -[url-bev]: https://www.mathworks.com/matlabcentral/fileexchange/82250 -[url-bev-design]: https://www.mathworks.com/matlabcentral/fileexchange/124795 -[url-hev-powersplit]: https://www.mathworks.com/matlabcentral/fileexchange/92820 - -## License - -See [`license.txt`](license.txt). - -_Copyright 2020-2025 The MathWorks, Inc._ +# Battery Electric Vehicle Model in Simscape™ + +[![MATLAB](https://github.com/mathworks/Simscape-Battery-Electric-Vehicle-Model/actions/workflows/ci-linux.yml/badge.svg)](https://github.com/mathworks/Simscape-Battery-Electric-Vehicle-Model/actions/workflows/ci-linux.yml) +[![MATLAB](https://github.com/mathworks/Simscape-Battery-Electric-Vehicle-Model/actions/workflows/ci-windows.yml/badge.svg)](https://github.com/mathworks/Simscape-Battery-Electric-Vehicle-Model/actions/workflows/ci-windows.yml) + +[![View Battery Electric Vehicle Model in Simscape on File Exchange](https://www.mathworks.com/matlabcentral/images/matlab-file-exchange.svg)](https://www.mathworks.com/matlabcentral/fileexchange/82250-battery-electric-vehicle-model-in-simscape) + +Version 4.0 + +- Version 4 works with R2024b or newer MATLAB releases. + Version 4.0.0 is identical to version 2.5.1. +- Version 3 works with R2025b or newer MATLAB releases. + +## Introduction + +This is a MATLAB® Project containing +a [Battery Electric Vehicle (BEV) model](BEV/README.md) and +its components such as +motor, high voltage battery, and longitudinal vehicle. +This project demonstrates Simscape's modular and +multi-fidelity modeling technology. + +The abstract BEV model is built in a simple and modular fashion, +and it can run faster than real-time. +It is suitable as a baseline model for drive cycle simulation +to estimate vehicle's electrical efficiency and +other vehicle-level information. + +This project also contains the model of a detailed +permanent magnet synchronous motor (PMSM) and controller. +It captures the detailed behaviors of the AC motor drive unit +and can estimate the electrical efficiency at the unit level. + +A Live Script demonstrates how to obtain the electrical efficiency +from the slow but detailed motor drive unit and use the result +as the block parameter of the simple but fast motor drive block +in the BEV model. + +Screenshot of the battery electric vehicle model + +Screenshot of the simulation result plots + +BEV Project Navigator App + +Screenshot of the longitudinal vehicle performance design app + +Vehicle1D Performance Design App + +Screenshot of the longitudinal vehicle performance design app + +Motor Drive Unit Efficiency App for System Thermal Model + +Screenshot of the motor drive unit efficiency app for system thermal model + +Motor Drive Unit App + +Screenshot of the motor drive unit app + +## What's New in 4.0 (January, 2026) + +> ⚠️ This is an update for R2024b or newer MATLAB releases. +> Version 4.0.0 is identical to version 2.5.1. +> For more recent development updates, visit +> the [github repository](https://github.com/mathworks/Simscape-Battery-Electric-Vehicle-Model). + +BEV Controller + +- The BEV Controller has improved its numerical robustness for some scenarios. + The zero-crossing detection is disabled for the integrator block for the I term + of the PI speed controller. + There were cases where simulation stalled due to the combination of zero-crossing + and the saturation of the integrator output. + +## What's New in 2.5 (June, 2025) + +BEV Project + +- The BEV Project Navigator app has been updated. + +Motor Drive Unit component + +- The folder organization of the component has been updated. + Different models are stored in different folders. + Related files for a model such as test scripts and apps are put in the same folder. +- Motor Drive Unit Efficiency apps have been added to the Basic model and + the System Thermal model. +- Motor Drive Unit App has been added to help select MDU model and simulation case. +- The Build Tool is used to check code and run tests. + +Vehicle1D component + +- The folder organization of the component has been updated. +- Vehicle1D Performance Design app has been updated. +- The Build Tool is used to check code and run tests. + +## What's New in 2.4 (November, 2024) + +- The project has been updated to MATLAB R2024b with some clean ups. +- Added brief entry-point descriptions about MATLAB project and Git + to [Using MATLAB Project](docs/Using-MATLAB-Project.md). + The page also provides links to product documentation for more information. + +## What's New in 2.3 (June, 2024) + +- The project has been updated to MATLAB R2024a. +- Vehicle1D performance design app is added. +- For veiwing Live Scripts in the GitHub web site in the browser, + they are converted to Markdown files and collected in the Markdown folder. + +## What's New in 2.2 (September, 2023) + +- The project has been updated to MATLAB R2023b. +- [MATLAB Build Tool][url-buildtool] is used to automate tasks + to generate HTML files and Jupyter notebooks from all Live Scripts + in the project. +- GitHub Actions has been updated to generate and upload + test report and coverage report. +- GitHub Actions also generates Jupyter notebooks from Live Scripts. + Jupyter notebooks can be viewed in the repo in the browser. + +[url-buildtool]: https://www.mathworks.com/help/matlab/matlab_prog/overview-of-matlab-build-tool.html + +## What's New in 2.1 (March, 2023) + +- The project has been updated to MATLAB R2023a. +- A shortcut button to open **MATLAB Test Manager** + is added in the Project Shortcuts tab of the toolstrip. + MATLAB Test Manager requires the **MATLAB Test** license. + +See [Change Log](ChangeLog.md) for more details. + +## What's New in 2.0 (February, 2023) + +- BEV system model uses updated components and + has simpler and easier configurability + for selecting vehicle speed reference input. +- High voltage battery component provides + four different models: + **Basic**, **System simple**, **System**, and **System tabulated**. + They are all system level models and abstract, + but they prodive different fidelity levels of the model. + See [README](./Components/BatteryHighVoltage/README.md) in + **Components > BatteryHighVoltage** for more details. +- Motor drive unit component provides + four different models: + **Basic**, **Basic thermal**, **System**, and **System tabulated**. + They are all system level models and abstract, + but they prodive different fidelity levels of the model. + See [README](./Components/MotorDriveUnit/README.md) in + **Components > MotorDriveUnit** for more details. +- A detailed battery model built with a custom Simscape library + has been removed. + [This project][url-bev] will remain focused + on vehicle system-level applications using abstract models + in future updates. + A new project [Electric Vehicle Design with Simscape][url-bev-design] + serves as an alternative for detailed model applications. + +See [Change Log](ChangeLog.md) for more details. + +## Tool Requirements + +Supported MATLAB Version: +R2024b or newer releases + +Required: +[MATLAB](https://www.mathworks.com/products/matlab.html), +[Simulink®](https://www.mathworks.com/products/simulink.html), +[Powertrain Blockset](https://www.mathworks.com/products/powertrain.html), +[Simscape](https://www.mathworks.com/products/simscape.html), +[Simscape Driveline™](https://www.mathworks.com/products/simscape-driveline.html), +[Simscape Electrical™](https://www.mathworks.com/products/simscape-electrical.html) + +Optional: +[MATLAB Test](https://www.mathworks.com/products/matlab-test.html), +[Parallel Computing Toolbox™](https://www.mathworks.com/products/parallel-computing.html) + +## How to Use + +Open `BatteryElectricVehicle.prj` in MATLAB, and +it will automatically open the project main page `BEV_main_script.html`. +The script contains the description of the model and +hyperlinks to models and scripts. + +## How to Use in MATLAB Online + +You can try this in [MATLAB Online][url_online]. +In MATLAB Online, from the **HOME** tab in the toolstrip, +select **Add-Ons** > **Get Add-Ons** +to open the Add-On Explorer. +Then search for the submission name, +navigate to the submission page, +click **Add** button, and select **Save to MATLAB Drive**. + +[url_online]: https://www.mathworks.com/products/matlab-online.html + +## Additional Notes + +- [Using MATLAB Project](docs/Using-MATLAB-Project.md) + +- [MATLAB Testing Framework](docs/MATLAB-Testing-Framework.md) + +## See Also + +[Hybrid Electric Vehicle Model in Simscape][url-hev-powersplit] +provides an abstract power-split HEV model. +The level of abstraction is similar to +this [BEV model in Simscape][url-bev] project. + +[Electric Vehicle Design with Simscape][url-bev-design] +provides BEV design workflows using detailed models +for detailed analysis. +Note that the [BEV model in Simscape][url-bev] project +(the current project you are viewing) is focused on +vehicle system-level applications using abstract models. + +[url-bev]: https://www.mathworks.com/matlabcentral/fileexchange/82250 +[url-bev-design]: https://www.mathworks.com/matlabcentral/fileexchange/124795 +[url-hev-powersplit]: https://www.mathworks.com/matlabcentral/fileexchange/92820 + +## License + +See [`license.txt`](license.txt). + +_Copyright 2020-2025 The MathWorks, Inc._ diff --git a/Utility/LocalTasks/openProjectDescription.m b/Utility/LocalTasks/openProjectDescription.m new file mode 100644 index 00000000..80f37c53 --- /dev/null +++ b/Utility/LocalTasks/openProjectDescription.m @@ -0,0 +1,11 @@ +function openProjectDescription +% Open the project description HTML file using the web command. +% +% The web command opens the specified HTML file using the MATLAB's web browser. +% Use this function to create a project shortcut. + +% Copyright 2026 The MathWorks, inc. + +web("BEVProjectDescription.html") + +end % function diff --git a/buildfile.m b/buildfile_24b.m similarity index 72% rename from buildfile.m rename to buildfile_24b.m index b3d856fa..788045c2 100644 --- a/buildfile.m +++ b/buildfile_24b.m @@ -1,163 +1,114 @@ -function plan = buildfile -%% Define and run tasks. - -% Copyright 2023 The MathWorks, Inc. - -top_folder = currentProject().RootFolder; - -test_definitions = [ - fullfile(top_folder, "BEV", "Test", "BEV_UnitTest_MQC.m") - ... - fullfile(top_folder, "Components", "BatteryHighVoltage", "Test", "BatteryHV_UnitTest.m") - fullfile(top_folder, "Components", "BatteryHighVoltage", "Test", "BatteryHV_UnitTest_MQC.m") - ... - fullfile(top_folder, "Components", "BEVController", "Test", "BEVController_UnitTest_MQC.m") - ... - fullfile(top_folder, "Components", "ControllerAndEnvironment", "Test", "CtrlEnv_UnitTest_MQC.m") - ... - fullfile(top_folder, "Components", "MotorDriveUnit", "Model-Basic", "MotorDriveUnit_test_Basic.m") - fullfile(top_folder, "Components", "MotorDriveUnit", "Model-Basic", "SimulationCases", "MotorDriveUnit_test_Basic_simulation_cases.m") - fullfile(top_folder, "Components", "MotorDriveUnit", "Model-BasicThermal", "MotorDriveUnit_test_BasicThermal.m") - fullfile(top_folder, "Components", "MotorDriveUnit", "Model-BasicThermal", "SimulationCases", "MotorDriveUnit_test_BasicThermal_simulation_cases.m") - fullfile(top_folder, "Components", "MotorDriveUnit", "Model-SystemTable", "MotorDriveUnit_test_SystemTable.m") - fullfile(top_folder, "Components", "MotorDriveUnit", "Model-SystemTable", "SimulationCases", "MotorDriveUnit_test_System_simulation_cases.m") - fullfile(top_folder, "Components", "MotorDriveUnit", "Model-SystemThermal", "MotorDriveUnit_test_SystemThermal.m") - fullfile(top_folder, "Components", "MotorDriveUnit", "Model-SystemThermal", "SimulationCases", "MotorDriveUnit_test_SystemThermal_simulation_cases.m") - fullfile(top_folder, "Components", "MotorDriveUnit", "Utility-MDU", "MotorDriveUnit_test_Utility_MDU.m") - fullfile(top_folder, "Components", "MotorDriveUnit", "MotorDriveUnit_test.m") - ... - fullfile(top_folder, "Components", "Vehicle1D", "Model-Basic", "SimulationCases", "Vehicle1D_test_Basic_simulation_cases.m") - fullfile(top_folder, "Components", "Vehicle1D", "Model-Basic", "Vehicle1D_Basic_test.m") - fullfile(top_folder, "Components", "Vehicle1D", "Utility-Vehicle1D", "Vehicle1D_test_Utility.m") - fullfile(top_folder, "Components", "Vehicle1D", "Utility-Vehicle1D", "Vehicle1DPerformance_test.m") - fullfile(top_folder, "Components", "Vehicle1D", "Utility-Vehicle1D", "Vehicle1DPerformance_uitest.m") - fullfile(top_folder, "Components", "Vehicle1D", "Vehicle1D_test.m") - fullfile(top_folder, "Components", "Vehicle1D", "Vehicle1DPerformanceDesignApp_uitest.m") - ... - fullfile(top_folder, "Components", "VehicleSpeedReference", "VehSpdRef_harness_model_test.m") - fullfile(top_folder, "Components", "VehicleSpeedReference", "SimulationCases", "VehSpdRef_Case_test.m") - ... - fullfile(top_folder, "Test", "BEVProject_UnitTest_MQC.m") - ]; - -% This function runs tasks such as identifing code issues, -% running tests, or performing your custom tasks. -% To see available tasks, run the following command in MATLAB Command Window. -% -% buildtool -tasks -% -% This function uses MATLAB build tool API, which was first released in R2022b. -% Incremental builds are supported since R2023a. -% Task for running tests is supported since R2023b. -% For information about MATLAB build tool, see the documentation: -% -% - Overview of MATLAB Build Tool -% https://mathworks.com/help/matlab/matlab_prog/overview-of-matlab-build-tool.html -% -% - Improve Performance with Incremental Builds -% https://mathworks.com/help/matlab/matlab_prog/improve-performance-with-incremental-builds.html -% -% - Task for running tests -% https://mathworks.com/help/matlab/ref/matlab.buildtool.tasks.testtask-class.html - -% buildtool -tasks -% buildtool CodeIssues -% buildtool CheckProject -% buildtool Test -% buildtool Clean -% buildtool CodeIssues CheckProject Test - -%% -% Create a build plan from task functions. -% -% `localfunctions` returns a cell array of function handles -% to all local functions in the current file. -% -% For information about buildplan, see the documentation: -% - https://mathworks.com/help/matlab/ref/buildplan.html -% -plan = buildplan(localfunctions); - -% Add a task to identify code issues. -plan("CodeIssues") = matlab.buildtool.tasks.CodeIssuesTask( ... - Results = "cache/buildtool-results/code-issues.sarif"); - -plan("CheckProject").Dependencies = "CodeIssues"; - -% Add a task to run tests. -plan("Test") = matlab.buildtool.tasks.TestTask( ... - SourceFiles = pwd, ... - TestResults = [ - "cache/buildtool-results/test-results.xml" - "cache/buildtool-results/test-results.pdf" - ], ... - CodeCoverageResults = [ - "cache/buildtool-results/code-coverage.html" - "cache/buildtool-results/code-coverage.xml" - ] ); - -plan("Test").Dependencies = "CodeIssues"; - -plan("Test").Tests = test_definitions; - -plan("Clean") = matlab.buildtool.tasks.CleanTask; - -% plan("LiveScriptToJupyterNotebook").Inputs = "**/*.mlx"; -% plan("LiveScriptToJupyterNotebook").Outputs = ... -% replace(plan("LiveScriptToJupyterNotebook").Inputs, ".mlx", ".ipynb"); - -plan.DefaultTasks = [ - "CodeIssues" - "CheckProject" - "Test" - ]; - -end % function - - -%% Local functions == task functions -% Task functions are local functions in the build file (this file). -% -% - Function name must end with the word "Task", which is case insensitive. -% The build tool generates task names from task function names -% by removing the "Task" suffix. -% For example, a task function `testTask` results in a task named "test". -% -% - A task function must accept a TaskContext object as its first input, -% even if the task ignores it. -% -% - The build tool treats the first help text line, -% often called the H1 line, of the task function as the task description. - - -%{ -function LiveScriptToMarkdownTask(context) -%% Export Live Scripts to Markdown files -% -% buildtool LiveScriptToMarkdown - -arguments - context (1,1) matlab.buildtool.TaskContext -end -mlxFiles = context.Task.Inputs.paths; -mdFiles = context.Task.Outputs.paths; -for idx = 1:numel(mlxFiles) - disp("Generating Markdown file from Live Script:") - disp(" " + mlxFiles(idx)) - - LiveScript_Utility.CheckAndGenerateMarkdown(mlxFiles(idx)) - % export(mlxFiles(idx), mdFiles(idx), Run=true); - -end % for -end % function -%} - - -function CheckProjectTask(~) -%% Run MATLAB project integrity checks -% -% buildtool CheckProject - -BEVProject_CheckProject - -end % function +function plan = buildfile_24b +%% Define and run tasks. +% buildtool -buildFile buildfile_24b.m -verbosity Verbose CodeIssues CheckProject Test + +% Copyright 2023-2026 The MathWorks, Inc. + +top_folder = currentProject().RootFolder; + +test_definitions = [ + fullfile(top_folder, "BEV", "Test", "BEV_UnitTest_MQC.m") + ... + fullfile(top_folder, "Components", "BatteryHighVoltage", "Test", "BatteryHV_UnitTest.m") + fullfile(top_folder, "Components", "BatteryHighVoltage", "Test", "BatteryHV_UnitTest_MQC.m") + ... + fullfile(top_folder, "Components", "BEVController", "Test", "BEVController_UnitTest_MQC.m") + ... + fullfile(top_folder, "Components", "ControllerAndEnvironment", "Test", "CtrlEnv_UnitTest_MQC.m") + ... + fullfile(top_folder, "Components", "MotorDriveUnit", "Model-Basic", "MotorDriveUnit_test_Basic.m") + fullfile(top_folder, "Components", "MotorDriveUnit", "Model-Basic", "SimulationCases", "MotorDriveUnit_test_Basic_simulation_cases.m") + fullfile(top_folder, "Components", "MotorDriveUnit", "Model-BasicThermal", "MotorDriveUnit_test_BasicThermal.m") + fullfile(top_folder, "Components", "MotorDriveUnit", "Model-BasicThermal", "SimulationCases", "MotorDriveUnit_test_BasicThermal_simulation_cases.m") + fullfile(top_folder, "Components", "MotorDriveUnit", "Model-SystemTable", "MotorDriveUnit_test_SystemTable.m") + fullfile(top_folder, "Components", "MotorDriveUnit", "Model-SystemTable", "SimulationCases", "MotorDriveUnit_test_System_simulation_cases.m") + fullfile(top_folder, "Components", "MotorDriveUnit", "Model-SystemThermal", "MotorDriveUnit_test_SystemThermal.m") + fullfile(top_folder, "Components", "MotorDriveUnit", "Model-SystemThermal", "SimulationCases", "MotorDriveUnit_test_SystemThermal_simulation_cases.m") + fullfile(top_folder, "Components", "MotorDriveUnit", "Utility-MDU", "MotorDriveUnit_test_Utility_MDU.m") + fullfile(top_folder, "Components", "MotorDriveUnit", "MotorDriveUnit_test.m") + ... + fullfile(top_folder, "Components", "Vehicle1D", "Model-Basic", "SimulationCases", "Vehicle1D_test_Basic_simulation_cases.m") + fullfile(top_folder, "Components", "Vehicle1D", "Model-Basic", "Vehicle1D_Basic_test.m") + fullfile(top_folder, "Components", "Vehicle1D", "Utility-Vehicle1D", "Vehicle1D_test_Utility.m") + fullfile(top_folder, "Components", "Vehicle1D", "Utility-Vehicle1D", "Vehicle1DPerformance_test.m") + fullfile(top_folder, "Components", "Vehicle1D", "Utility-Vehicle1D", "Vehicle1DPerformance_uitest.m") + fullfile(top_folder, "Components", "Vehicle1D", "Vehicle1D_test.m") + fullfile(top_folder, "Components", "Vehicle1D", "Vehicle1DPerformanceDesignApp_uitest.m") + ... + fullfile(top_folder, "Components", "VehicleSpeedReference", "VehSpdRef_harness_model_test.m") + fullfile(top_folder, "Components", "VehicleSpeedReference", "SimulationCases", "VehSpdRef_Case_test.m") + ... + fullfile(top_folder, "Test", "BEVProject_UnitTest_MQC.m") + ]; + +% This function runs tasks such as identifing code issues, +% running tests, or performing your custom tasks. +% To see available tasks, run the following command in MATLAB Command Window. +% +% buildtool -tasks +% +% This function uses MATLAB build tool API, which was first released in R2022b. +% Incremental builds are supported since R2023a. +% Task for running tests is supported since R2023b. +% For information about MATLAB build tool, see the documentation: +% +% - Overview of MATLAB Build Tool +% https://mathworks.com/help/matlab/matlab_prog/overview-of-matlab-build-tool.html +% +% - Improve Performance with Incremental Builds +% https://mathworks.com/help/matlab/matlab_prog/improve-performance-with-incremental-builds.html +% +% - Task for running tests +% https://mathworks.com/help/matlab/ref/matlab.buildtool.tasks.testtask-class.html + +% buildtool -tasks +% buildtool CodeIssues +% buildtool CheckProject +% buildtool Test +% buildtool Clean +% buildtool CodeIssues CheckProject Test + +%% +% Create a build plan from task functions. +% +% `localfunctions` returns a cell array of function handles +% to all local functions in the current file. +% +% For information about buildplan, see the documentation: +% - https://mathworks.com/help/matlab/ref/buildplan.html +% +plan = buildplan(localfunctions); +plan.DefaultTasks = [ + "CodeIssues" + "CheckProject" + "Test" + ]; + +% Add a task to identify code issues. +plan("CodeIssues") = matlab.buildtool.tasks.CodeIssuesTask( ... + Results = "test-result-24b/code-issues.sarif"); + +plan("CheckProject").Dependencies = "CodeIssues"; + +% Add a task to run tests. +plan("Test") = matlab.buildtool.tasks.TestTask( ... + Dependencies = "CodeIssues", ... + SourceFiles = pwd, ... + TestResults = [ + "test-result-24b/test-result.xml" + "test-result-24b/test-result.pdf" + ], ... + CodeCoverageResults = [ + "test-result-24b/code-coverage.html" + "test-result-24b/code-coverage.xml" + ] ); + +plan("Test").Tests = test_definitions; + +plan("Clean") = matlab.buildtool.tasks.CleanTask; + +end % function + +function CheckProjectTask(~) +BEVProject_CheckProject +end % local function diff --git a/cache/buildtool-results/README.md b/cache/buildtool-results/README.md deleted file mode 100644 index 0cfc8429..00000000 --- a/cache/buildtool-results/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# buildtool results - -This folder contains the results of the buildtool run. - -_Copyright 2023 The MathWorks, Inc._ diff --git a/cache/buildtool-results/code-coverage.html b/cache/buildtool-results/code-coverage.html deleted file mode 100644 index 2c059efe..00000000 --- a/cache/buildtool-results/code-coverage.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - -
-

-

- -

-

-
-
-
-
-
-
-
-
-
-
-
-
-
- -

-

-
-
-
-
-
-
-
- -

-

-
-
-
- - - - diff --git a/cache/buildtool-results/code-coverage.xml b/cache/buildtool-results/code-coverage.xml deleted file mode 100644 index 3991c1e0..00000000 --- a/cache/buildtool-results/code-coverage.xml +++ /dev/null @@ -1,15702 +0,0 @@ - - - - C:\local\mw\gh-isaacito12-bev\ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cache/buildtool-results/code-issues.sarif b/cache/buildtool-results/code-issues.sarif deleted file mode 100644 index 9b555459..00000000 --- a/cache/buildtool-results/code-issues.sarif +++ /dev/null @@ -1,1500 +0,0 @@ -{ - "version": "2.1.0", - "properties": { - "Date": "12-Jun-2025 15:17:07", - "Release": "R2024b", - "CodeAnalyzerConfiguration": "active" - }, - "runs": [ - { - "tool": { - "driver": { - "name": "Code Analyzer" - } - }, - "artifacts": [ - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/BEV_main_script.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/BEV_setup.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/SimulationCases/BEV_Case_Constant_Basic.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/SimulationCases/BEV_Case_Constant_Thermal.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/SimulationCases/BEV_Case_FTP75_Basic.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/SimulationCases/BEV_Case_HighSpeed_Basic.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Basic.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/SimulationCases/BEV_Case_SimpleDrivePattern_Thermal.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/SimulationCases/BEV_Case_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/Test/BEV_runtests.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/Test/BEV_UnitTest_MQC.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/Utility/BEV_getMotorSpeedFromVehicleSpeed.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/Utility/BEV_plotResultsCompact.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/Utility/Configuration/BEV_useComponents_Basic.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/Utility/Configuration/BEV_useComponents_Thermal.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/Utility/LocalTasks/BEV_generateMarkdown.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEV/Utility/LocalTasks/BEV_takeScreenshots.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEVProjectDescription.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEVProjectNavigator.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/BEVProject_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/buildfile.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/BatteryHV_main_script.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/BatteryHV_refsub_Basic_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/BatteryHV_refsub_SystemSimple_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/BatteryHV_refsub_SystemTable_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/BatteryHV_refsub_System_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/BatteryHV_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/buildfile.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Harness/BatteryHV_harness_setup.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Model-TableBased/BatteryHV_Table_buildParameters.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Model-TableBased/BatteryHV_Table_visualizeParameters.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/SimulationCases/BatteryHV_Case_Charge.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/SimulationCases/BatteryHV_Case_Constant.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/SimulationCases/BatteryHV_Case_Discharge.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/SimulationCases/BatteryHV_Case_Random.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/SimulationCases/BatteryHV_Case_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Test/BatteryHV_runSelectedTests_TableBased.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Test/BatteryHV_runtests.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Test/BatteryHV_UnitTest.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Test/BatteryHV_UnitTest_MQC.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/BatteryHV_buildOpenCircuitVoltageData.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/BatteryHV_buildTerminalResistanceData.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/BatteryHV_getAmpereHourRating.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/BatteryHV_getBatteryPackParameters.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/BatteryHV_getReferencedSubsystemFilename.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/BatteryHV_plotInput_LoadCurrent.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/BatteryHV_plotResults.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_loadSimulationCase.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_loadSimulationCase_Charge.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_loadSimulationCase_Constant.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_loadSimulationCase_Discharge.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_loadSimulationCase_Random.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_setInitialConditions.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_useRefsub.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_useRefsub_Basic.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_useRefsub_System.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_useRefsub_SystemSimple.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/Configuration/BatteryHV_useRefsub_SystemTable.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/LocalTasks/BatteryHV_generateMarkdown.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/LocalTasks/BatteryHV_openREADME.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BatteryHighVoltage/Utility/LocalTasks/BatteryHV_takeScreenshots.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BEVController/BEVController_refsub_Basic_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BEVController/Harness/BEVController_harness_setup.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BEVController/SimulationCases/BEVController_Case.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BEVController/SimulationCases/BEVController_Case_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BEVController/Test/BEVController_runtests.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BEVController/Test/BEVController_UnitTest_MQC.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BEVController/Utility/Configuration/BEVController_useRefsub.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BEVController/Utility/Configuration/BEVController_useRefsub_Basic.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/BEVController/Utility/LocalTasks/BEVController_generateMarkdown.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/CtrlEnv_refsub_Basic_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/CtrlEnv_Vehicle_refsub_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/Harness/CtrlEnv_Vehicle_harness_setup.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/SimulationCases/CtrlEnv_Vehicle_Case.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/Test/CtrlEnv_Vehicle_runtests.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/Test/CtrlEnv_Vehicle_UnitTest_MQC.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/Utility/Configuration/CtrlEnv_Vehicle_loadSimulationCase.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/Utility/Configuration/CtrlEnv_Vehicle_setInitialConditions.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/Utility/CtrlEnv_Vehicle_getMotorSpeedFromVehicleSpeed.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/Utility/CtrlEnv_Vehicle_plotResults.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/Components/Vehicle/Utility/LocalTasks/CtrlEnv_Vehicle_generateMarkdown.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Harness/CtrlEnv_harness_setup.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/SimulationCases/CtrlEnv_Case_Constant.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/SimulationCases/CtrlEnv_Case_FTP75.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/SimulationCases/CtrlEnv_Case_HighSpeed.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/SimulationCases/CtrlEnv_Case_SimpleDrivePattern.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/SimulationCases/CtrlEnv_Case_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Test/CtrlEnv_runtests.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Test/CtrlEnv_UnitTest_MQC.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Utility/Configuration/CtrlEnv_loadCase.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Utility/Configuration/CtrlEnv_loadCase_Constant.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Utility/Configuration/CtrlEnv_loadCase_FTP75.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Utility/Configuration/CtrlEnv_loadCase_HighSpeed.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Utility/Configuration/CtrlEnv_loadCase_SimpleDrivePattern.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Utility/CtrlEnv_plotResults.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/ControllerAndEnvironment/Utility/LocalTasks/CtrlEnv_generateMarkdown.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/buildfile.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/MotorDriveUnitEfficiencyApp_Basic.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/MotorDriveUnit_BasicModelEfficiencyPlot.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/MotorDriveUnit_getBlockInfo_Basic.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/MotorDriveUnit_note_BasicModelEfficiency.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/MotorDriveUnit_refsub_Basic_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/MotorDriveUnit_test_Basic.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/MotorDriveUnit_useRefsub_Basic.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/SimulationCases/MotorDriveUnit_Basic_Constant.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/SimulationCases/MotorDriveUnit_Basic_Drive.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/SimulationCases/MotorDriveUnit_Basic_Random.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/SimulationCases/MotorDriveUnit_Basic_RegenBrake.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-Basic/SimulationCases/MotorDriveUnit_test_Basic_simulation_cases.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-BasicThermal/MotorDriveUnit_refsub_BasicThermal_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-BasicThermal/MotorDriveUnit_test_BasicThermal.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-BasicThermal/MotorDriveUnit_useRefsub_BasicThermal.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-BasicThermal/SimulationCases/MotorDriveUnit_BasicThermal_Constant.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-BasicThermal/SimulationCases/MotorDriveUnit_BasicThermal_Drive.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-BasicThermal/SimulationCases/MotorDriveUnit_BasicThermal_Random.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-BasicThermal/SimulationCases/MotorDriveUnit_BasicThermal_RegenBrake.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-BasicThermal/SimulationCases/MotorDriveUnit_test_BasicThermal_simulation_cases.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemTable/MotorDriveUnit_refsub_SystemTable_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemTable/MotorDriveUnit_test_SystemTable.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemTable/MotorDriveUnit_useRefsub_SystemTable.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemTable/SimulationCases/MotorDriveUnit_SystemTable_Constant.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemTable/SimulationCases/MotorDriveUnit_SystemTable_Drive.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemTable/SimulationCases/MotorDriveUnit_SystemTable_Random.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemTable/SimulationCases/MotorDriveUnit_SystemTable_RegenBrake.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemTable/SimulationCases/MotorDriveUnit_test_System_simulation_cases.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/MotorDriveUnitEfficiencyApp_SystemThermal.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/MotorDriveUnit_getBlockInfo_SystemThermal.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/MotorDriveUnit_note_SystemThermalModelEfficiency.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/MotorDriveUnit_refsub_SystemThermal_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/MotorDriveUnit_test_SystemThermal.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/MotorDriveUnit_useRefsub_SystemThermal.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/SimulationCases/MotorDriveUnit_SystemThermal_Constant.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/SimulationCases/MotorDriveUnit_SystemThermal_Drive.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/SimulationCases/MotorDriveUnit_SystemThermal_Random.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/SimulationCases/MotorDriveUnit_SystemThermal_RegenBrake.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Model-SystemThermal/SimulationCases/MotorDriveUnit_test_SystemThermal_simulation_cases.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/MotorDriveUnitApp.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/MotorDriveUnitDescription.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/MotorDriveUnit_harness_setup.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/MotorDriveUnit_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_EfficiencyPlot.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_ResultsPlot.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_setInitialConditions.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_setReferencedSubsystem.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_setSimCase_Constant.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_setSimCase_Drive.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_setSimCase_Random.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_setSimCase_RegenBrake.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_setSimulationCase.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/MotorDriveUnit/Utility-MDU/MotorDriveUnit_test_Utility_MDU.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Reducer/Reducer_refsub_Basic_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/buildfile.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Model-Basic/SimulationCases/Vehicle1D_Basic_Accelerate.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Model-Basic/SimulationCases/Vehicle1D_Basic_Braking.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Model-Basic/SimulationCases/Vehicle1D_Basic_Coastdown.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Model-Basic/SimulationCases/Vehicle1D_Basic_Constant.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Model-Basic/SimulationCases/Vehicle1D_test_Basic_simulation_cases.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Model-Basic/Vehicle1D_Basic_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Model-Basic/Vehicle1D_refsub_Basic_params.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1DPerformanceDesignAppMain.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1DPerformanceParameterPresets.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1DPerformanceParameters.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1DPerformancePlot.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1DPerformance_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1DPerformance_uitest.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_generateMarkdown.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_plotInputs.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_plotResults.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_resetHarnessModel.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_setInitialConditions.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_setSimCase_Accelerate.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_setSimCase_Braking.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_setSimCase_Coastdown.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_setSimCase_Constant.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_setSimulationCase.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_takeAppScreenshot.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Utility-Vehicle1D/Vehicle1D_test_Utility.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Vehicle1DPerformanceDesignApp.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Vehicle1DPerformanceDesignApp_uitest.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Vehicle1D_Description.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Vehicle1D_harness_setup.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/Vehicle1D/Vehicle1D_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/markdown/VehSpdRef_generateMarkdown.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_Case_Constant.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_Case_FTP75.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_Case_HighSpeed.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_Case_SimpleDrivePattern.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_Case_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_loadCase.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_loadCase_Constant.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_loadCase_FTP75.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_loadCase_HighSpeed.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/SimulationCases/VehSpdRef_loadCase_SimpleDrivePattern.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/Utility/VehSpdRef_plotResults.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/Utility/VehSpdRef_plotResults_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/Utility/VehSpdRef_runtests.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Components/VehicleSpeedReference/VehSpdRef_harness_model_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/DetailedModelApplications/BEVProject_DetailedModelApplications.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/DetailedModelApplications/MotorDrivePmsmFem/MotorDriveElecLossParams_text.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/DetailedModelApplications/MotorDrivePmsmFem/MotorDrivePmsmFemParams.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_calcElectricEfficiency.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_runSim.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/DetailedModelApplications/MotorDrivePmsmFem/MotorDrive_testParams.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/DetailedModelApplications/MotorPmsmFem/PmsmFemParams.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Interface/defineBus_HighVoltage.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Interface/defineBus_Rotational.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Test/BEVProject_runtests.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Test/BEVProject_UnitTest_MQC.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Test/CheckProject/BEVProject_CheckProject.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Test/CheckProject/BEVProject_CheckProject_runtests.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Test/CheckProject/BEVProject_CheckProject_UnitTest.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/AppConfigUI.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/BlockSelectorUI.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/Button.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/CheckBox.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/DropDown.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/EditField.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/EnabledButton.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/HorizontalLine.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/Hyperlink.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/Label.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/ListBox.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/LiteAppComponentBase.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/PhysicalValueUI.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/StateButton.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/Table.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/TextArea.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Component/WindowHeader.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Graphics/Axes.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Graphics/Panel.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Graphics/PolarAxes.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+SimscapeUtility/AnalyzeValueString.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+SimscapeUtility/buildPropertyDictionaryFromBlock.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+SimscapeUtility/findSimscapeBlocks.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+SimscapeUtility/getSimscapeValueFromBlockPropertyDictionary.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+SimscapeUtility/getSimscapeValueFromValueStructField.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+SimscapeUtility/mustBeAllCommensurateUnit.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+SimscapeUtility/mustBeSimscapeValueNonnegative.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+SimscapeUtility/mustBeSimscapeValuePositive.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+SimscapeUtility/StringifySimscapeValue.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/buildJSONTextFromAppConfig.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/Constant.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/getFileFullPath.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/getFolderFullPath.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/getNumberArrayFromString.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/getNumericValueFromString.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/getUnusedFilename.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/i18n.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/mustBeAppConfig.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/mustBeFunctionHandleOrEmpty.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/mustBeNumericValueStringOrValidNameOrEmpty.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/mustBeStringOrPositiveInteger.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/mustBeTextOrPositiveInteger.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/mustBeTextOrPositiveNumber.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/ReportTimeAndFileLocation.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/setupAppConfigFromConfigStruct.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/+Utility/Stringify.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/LiteAppLayout.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/+LiteApp5/LiteAppWindow.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/AboutBEVProject.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/adjustFigureHeightAndWindowYPosition.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/atProjectStartUp.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/Checks/checkCallbackButton.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/generateHTML.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/getSimscapeValueFromBlockParameter.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/generateMarkdown_fromLiveScript.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/LiveScriptUtility2.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/LiveScript_Utility.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/LocalTask_test.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/openCodeAnalyzer.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/openFile.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/openFileInProject.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/openFile_SignalDesignerExample.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/openTestBrowser.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/openTestManager.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/saveModels.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/screenshotSimulink.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/LocalTasks/setModelWindowPositionAndSize.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/plotSimulationResultSignal.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/ProjectStats.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/setMinimumYRange.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/SignalDesigner/+SignalDesignUtility/buildTrace.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/SignalDesigner/+SignalDesignUtility/buildXYData.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/SignalDesigner/+SignalSourceBlockCallback/plotContinuous.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/SignalDesigner/+SignalSourceBlockCallback/plotContinuousMultiStep.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/SignalDesigner/+SignalSourceBlockCallback/plotPieceWiseConstant.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/SignalDesigner/+SignalSourceBlockCallback/plotTraceGenerator.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/SignalDesigner/+SignalSourceBlockCallback/setDataToLookupTableBlock.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/SignalDesigner/SignalDesigner.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/SignalDesigner/SignalDesigner_example.mlx" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/TestTools/BEVTestCase.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/TimetableSingleSignalPlot.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/verifyBlockCheckbox_custom.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/verifyBlockDropdown_custom.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/verifyBlockInitialPriority_custom.m" - } - }, - { - "location": { - "uri": "file:///C:/local/mw/gh-isaacito12-bev/Utility/verifyBlockParameter_custom.m" - } - } - ], - "results": [] - } - ] -} diff --git a/cache/buildtool-results/release/bundle.index.js b/cache/buildtool-results/release/bundle.index.js deleted file mode 100644 index 77203846..00000000 --- a/cache/buildtool-results/release/bundle.index.js +++ /dev/null @@ -1,293 +0,0 @@ -(()=>{var __webpack_modules__={72942:(C,I,i)=>{var S,R;S=[i(81057),i(70816),i(82537),i(78578),i(10469)],R=i.dj.d(S,function(_,v,f,g,p){"use strict";var d=0,a=1,e=2,o="This deferred has already been fulfilled.",t=Object.freeze||function(){},n=function(c,h,E,y,A){_("config-deferredInstrumentation")&&h===e&&u.instrumentRejected&&c.length===0&&u.instrumentRejected(E,!1,y,A);for(var T=0;T"u"?M:W}if(w=!0,y){if(y===e&&A===M)return M}else return typeof M>"u"&&(M=new f),x(M),M}},t(h)};return u.prototype.toString=function(){return"[object Deferred]"},p&&p(u),u},C,I),C.exports=R},47872:(C,I,i)=>{var S,R;S=[i(22097),i(17012)],R=i.dj.d(S,function(_,v){"use strict";var f=_.after;function g(){}return g.prototype={on:function(p,d){return v.parse(this,p,d,function(a,e){return f(a,"on"+e,d,!0)})},emit:function(p,d){var a=[this];return a.push.apply(a,arguments),v.emit.apply(v,a)}},g},C,I),C.exports=R},72625:(C,I,i)=>{var S,R;S=[i(51892),i(70816),i(24487),i(9393)],R=i.dj.d(S,function(_,v,f,g){return _("dojo.Stateful",null,{_attrPairNames:{},_getAttrNames:function(p){var d=this._attrPairNames;return d[p]?d[p]:d[p]={s:"_"+p+"Setter",g:"_"+p+"Getter"}},postscript:function(p){p&&this.set(p)},_get:function(p,d){return typeof this[d.g]=="function"?this[d.g]():this[p]},get:function(p){return this._get(p,this._getAttrNames(p))},set:function(p,d){if(typeof p=="object"){for(var a in p)p.hasOwnProperty(a)&&a!="_watchCallbacks"&&this.set(a,p[a]);return this}var e=this._getAttrNames(p),o=this._get(p,e),t=this[e.s],n;if(typeof t=="function"?n=t.apply(this,Array.prototype.slice.call(arguments,1)):this[p]=d,this._watchCallbacks){var r=this;g(n,function(){r._watchCallbacks(p,o,d)})}return this},_changeAttrValue:function(p,d){var a=this.get(p);return this[p]=d,this._watchCallbacks&&this._watchCallbacks(p,a,d),this},watch:function(p,d){var a=this._watchCallbacks;if(!a){var e=this;a=this._watchCallbacks=function(n,r,s,l){var u=function(c){if(c){c=c.slice();for(var h=0,E=c.length;h-1&&o.splice(n,1)},t}})},C,I),C.exports=R},13565:(C,I,i)=>{var S,R;S=[i(27973),i(70816),i(24487),i(30114)],R=i.dj.d(S,function(_,v,f,g){var p=_.Color=function(d){d&&this.setColor(d)};return p.named={black:[0,0,0],silver:[192,192,192],gray:[128,128,128],white:[255,255,255],maroon:[128,0,0],red:[255,0,0],purple:[128,0,128],fuchsia:[255,0,255],green:[0,128,0],lime:[0,255,0],olive:[128,128,0],yellow:[255,255,0],navy:[0,0,128],blue:[0,0,255],teal:[0,128,128],aqua:[0,255,255],transparent:g.transparentColor||[0,0,0,0]},v.extend(p,{r:255,g:255,b:255,a:1,_set:function(d,a,e,o){var t=this;t.r=d,t.g=a,t.b=e,t.a=o},setColor:function(d){return v.isString(d)?p.fromString(d,this):v.isArray(d)?p.fromArray(d,this):(this._set(d.r,d.g,d.b,d.a),d instanceof p||this.sanitize()),this},sanitize:function(){return this},toRgb:function(){var d=this;return[d.r,d.g,d.b]},toRgba:function(){var d=this;return[d.r,d.g,d.b,d.a]},toHex:function(){var d=f.map(["r","g","b"],function(a){var e=this[a].toString(16);return e.length<2?"0"+e:e},this);return"#"+d.join("")},toCss:function(d){var a=this,e=a.r+", "+a.g+", "+a.b;return(d?"rgba("+e+", "+a.a:"rgb("+e)+")"},toString:function(){return this.toCss(!0)}}),p.blendColors=_.blendColors=function(d,a,e,o){var t=o||new p;return t.r=Math.round(d.r+(a.r-d.r)*e),t.g=Math.round(d.g+(a.g-d.g)*e),t.b=Math.round(d.b+(a.b-d.b)*e),t.a=d.a+(a.a-d.a)*e,t.sanitize()},p.fromRgb=_.colorFromRgb=function(d,a){var e=d.toLowerCase().match(/^rgba?\(([\s\.,0-9]+)\)/);return e&&p.fromArray(e[1].split(/\s*,\s*/),a)},p.fromHex=_.colorFromHex=function(d,a){var e=a||new p,o=d.length==4?4:8,t=(1<>=o,e[n]=o==4?17*r:r}),e.a=1,e)},p.fromArray=_.colorFromArray=function(d,a){var e=a||new p;return e._set(Number(d[0]),Number(d[1]),Number(d[2]),Number(d[3])),isNaN(e.a)&&(e.a=1),e.sanitize()},p.fromString=_.colorFromString=function(d,a){var e=p.named[d];return e&&p.fromArray(e,a)||p.fromRgb(d,a)||p.fromHex(d,a)},p},C,I),C.exports=R},59147:(C,I,i)=>{var S,R;S=[i(27973),i(72942),i(78578),i(82537),i(81057),i(70816),i(9393)],R=i.dj.d(S,function(_,v,f,g,p,d,a){var e=function(){},o=Object.freeze||function(){},t=_.Deferred=function(n){var r,s,l,u,c,h,E,y=this.promise=new f;function A(b){if(s)throw new Error("This deferred has already been resolved");r=b,s=!0,T()}function T(){for(var b;!b&&E;){var x=E;E=E.next,(b=x.progress==e)&&(s=!1);var M=c?x.error:x.resolved;if(p("config-useDeferredInstrumentation")&&c&&v.instrumentRejected&&v.instrumentRejected(r,!!M),M)try{var B=M(r);if(B&&typeof B.then=="function"){B.then(d.hitch(x.deferred,"resolve"),d.hitch(x.deferred,"reject"),d.hitch(x.deferred,"progress"));continue}var W=b&&B===void 0;b&&!W&&(c=B instanceof Error),x.deferred[W&&c?"reject":"resolve"](W?r:B)}catch(K){x.deferred.reject(K)}else c?x.deferred.reject(r):x.deferred.resolve(r)}}this.isResolved=y.isResolved=function(){return u==0},this.isRejected=y.isRejected=function(){return u==1},this.isFulfilled=y.isFulfilled=function(){return u>=0},this.isCanceled=y.isCanceled=function(){return l},this.resolve=this.callback=function(b){this.fired=u=0,this.results=[b,null],A(b)},this.reject=this.errback=function(b){c=!0,this.fired=u=1,p("config-useDeferredInstrumentation")&&v.instrumentRejected&&v.instrumentRejected(b,!!E),A(b),this.results=[null,b]},this.progress=function(b){for(var x=E;x;){var M=x.progress;M&&M(b),x=x.next}},this.addCallbacks=function(b,x){return this.then(b,x,e),this},y.then=this.then=function(b,x,M){var B=M==e?this:new t(y.cancel),W={resolved:b,error:x,progress:M,deferred:B};return E?h=h.next=W:E=h=W,s&&T(),B.promise};var w=this;y.cancel=this.cancel=function(){if(!s){var b=n&&n(w);s||(b instanceof Error||(b=new g(b)),b.log=!1,w.reject(b))}l=!0},o(y)};return d.extend(t,{addCallback:function(n){return this.addCallbacks(d.hitch.apply(_,arguments))},addErrback:function(n){return this.addCallbacks(null,d.hitch.apply(_,arguments))},addBoth:function(n){var r=d.hitch.apply(_,arguments);return this.addCallbacks(r,r)},fired:-1}),t.when=_.when=a,t},C,I),C.exports=R},24487:(C,I,i)=>{var S,R;S=[i(27973),i(81057),i(70816)],R=i.dj.d(S,function(_,v,f){var g={},p,d;v("csp-restrictions")||(d=function(t){return g[t]=new Function("item","index","array",t)});function a(t){var n=!t;return function(r,s,l){var u=0,c=r&&r.length||0,h;if(c&&typeof r=="string"&&(r=r.split("")),typeof s=="string"){if(v("csp-restrictions"))throw new TypeError("callback must be a function");s=g[s]||d(s)}if(l){for(;u0)return o.lastIndexOf(l,u,c);var E=l&&l.length||0,y=t?E+s:r,A;for(c===p?A=t?r:E+s:c<0?(A=E+c,A<0&&(A=r)):A=c>=E?E+s:c,E&&typeof l=="string"&&(l=l.split(""));A!=y;A+=n)if(l[A]==u)return A;return-1}}var o={every:a(!1),some:a(!0),indexOf:e(!0),lastIndexOf:e(!1),forEach:function(t,n,r){var s=0,l=t&&t.length||0;if(l&&typeof t=="string"&&(t=t.split("")),typeof n=="string"){if(v("csp-restrictions"))throw new TypeError("callback must be a function");n=g[n]||d(n)}if(r)for(;s{var S,R;S=[i(89490),i(81057),i.dj.c(C)],R=i.dj.d(S,function(_,v,f){var g={};if(v("dojo-config-api")){var p=f.rawConfig,d;for(d in p)g[d]=p[d]}else{var a=function(o,t,n){for(d in o)d!="has"&&v.add(t+d,o[d],0,n)};g=v("dojo-loader")?f.rawConfig:_.dojoConfig||_.djConfig||{},a(g,"config",1),a(g.has,"",1)}if(g.updateLocale=function(o,t){var n,r,s="en-us";if(o.indexOf(t)>=0&&t!=="zh"){g.locale=t;return}if(n=t.split("-")[0],n==="zh"){g.locale=s.toLocaleLowerCase();return}for(var l=0;l{var S,R;S=[i(27973),i(17012),i(99098),i(22097),i(52834),i(7982),i(63282),i(70816),i(97053)],R=i.dj.d(S,function(_,v,f,g,p,d,a,e){a.add("events-keypress-typed",function(){var h={charCode:0};try{h=document.createEvent("KeyboardEvent"),(h.initKeyboardEvent||h.initKeyEvent).call(h,"keypress",!0,!0,null,!1,!1,!1,!1,9,3)}catch(E){}return h.charCode==0&&!a("opera")});function o(h,E,y,A,T){if(A=e.hitch(y,A),!h||!(h.addEventListener||h.attachEvent))return g.after(h||_.global,E,A,!0);if(typeof E=="string"&&E.substring(0,2)=="on"&&(E=E.substring(2)),h||(h=_.global),!T)switch(E){case"keypress":E=l;break;case"mouseenter":E=d.enter;break;case"mouseleave":E=d.leave;break}return v(h,E,A,T)}var t={106:42,111:47,186:59,187:43,188:44,189:45,190:46,191:47,192:96,219:91,220:92,221:93,222:39,229:113},n=a("mac")?"metaKey":"ctrlKey",r=function(h,E){var y=e.mixin({},h,E);return s(y),y.preventDefault=function(){h.preventDefault()},y.stopPropagation=function(){h.stopPropagation()},y};function s(h){h.keyChar=h.charCode?String.fromCharCode(h.charCode):"",h.charOrCode=h.keyChar||h.keyCode}var l;if(a("events-keypress-typed")){var u=function(h,E){try{return h.keyCode=E}catch(y){return 0}};l=function(h,E){var y=v(h,"keydown",function(T){var w=T.keyCode,b=w!=13&&w!=32&&(w!=27||!a("ie"))&&(w<48||w>90)&&(w<96||w>111)&&(w<186||w>192)&&(w<219||w>222)&&w!=229;if(b||T.ctrlKey){var x=b?0:w;if(T.ctrlKey){if(w==3||w==13)return E.call(T.currentTarget,T);x>95&&x<106?x-=48:!T.shiftKey&&x>=65&&x<=90?x+=32:x=t[x]||x}var M=r(T,{type:"keypress",faux:!0,charCode:x});E.call(T.currentTarget,M),a("ie")&&u(T,M.keyCode)}}),A=v(h,"keypress",function(T){var w=T.charCode;return w=w>=32?w:0,T=r(T,{charCode:w,faux:!0}),E.call(this,T)});return{remove:function(){y.remove(),A.remove()}}}}else a("opera")?l=function(h,E){return v(h,"keypress",function(y){var A=y.which;return A==3&&(A=99),A=A<32&&!y.shiftKey?0:A,y.ctrlKey&&!y.shiftKey&&A>=65&&A<=90&&(A+=32),E.call(this,r(y,{charCode:A}))})}:l=function(h,E){return v(h,"keypress",function(y){return s(y),E.call(this,y)})};var c={_keypress:l,connect:function(h,E,y,A,T){var w=arguments,b=[],x=0;b.push(typeof w[0]=="string"?null:w[x++],w[x++]);var M=w[x+1];b.push(typeof M=="string"||typeof M=="function"?w[x++]:null,w[x++]);for(var B=w.length;x{var S,R;S=[i(27973),i(81057),i(70816)],R=i.dj.d(S,function(_,v,f){var g=f.mixin,p=Object.prototype,d=p.toString,a,e=0,o="constructor";v("csp-restrictions")?a=function(){}:a=new Function;function t(K,k){throw new Error("declare"+(k?" "+k:"")+": "+K)}function n(K,k){for(var U=[],G=[{cls:0,refs:[]}],Z={},Q=1,$=K.length,F=0,P,N,O,H,Y,z,J,ne;F<$;++F){for(O=K[F],O?d.call(O)!="[object Function]"&&t("mixin #"+F+" is not a callable constructor.",k):t("mixin #"+F+" is unknown. Did you use dojo.require to pull it in?",k),N=O._meta?O._meta.bases:[O],H=0,P=N.length-1;P>=0;--P)Y=N[P].prototype,Y.hasOwnProperty("declaredClass")||(Y.declaredClass="uniqName_"+e++),J=Y.declaredClass,Z.hasOwnProperty(J)||(Z[J]={count:0,refs:[],cls:N[P]},++Q),z=Z[J],H&&H!==z&&(z.refs.push(H),++H.count),H=z;++H.count,G[0].refs.push(H)}for(;G.length;){for(H=G.pop(),U.push(H.cls),--Q;ne=H.refs,ne.length==1;){if(H=ne[0],!H||--H.count){H=0;break}U.push(H.cls),--Q}if(H)for(F=0,$=ne.length;F<$;++F)H=ne[F],--H.count||G.push(H)}return Q&&t("can't build consistent linearization",k),O=K[0],U[0]=O?O._meta&&O===U[U.length-O._meta.bases.length]?O._meta.bases.length:1:0,U}function r(K,k,U,G){var Z,Q,$,F,P,N,O,H,Y,z=this._inherited=this._inherited||{};if(typeof K=="string"&&(Z=K,K=k,k=U,U=G),typeof K=="function")F=K,K=k,k=U;else try{F=K.callee}catch(J){if(J instanceof TypeError)t("strict mode inherited() requires the caller function to be passed before arguments",this.declaredClass);else throw J}if(Z=Z||F.nom,Z||t("can't deduce a name to call inherited()",this.declaredClass),U=G=0,P=this.constructor._meta,$=P.bases,Y=z.p,Z!=o){if(z.c!==F&&(Y=0,N=$[0],P=N._meta,P.hidden[Z]!==F)){Q=P.chains,Q&&typeof Q[Z]=="string"&&t("calling chained method with inherited: "+Z,this.declaredClass);do if(P=N._meta,O=N.prototype,P&&(O[Z]===F&&O.hasOwnProperty(Z)||P.hidden[Z]===F))break;while(N=$[++Y]);Y=N?Y:-1}if(N=$[++Y],N)if(O=N.prototype,N._meta&&O.hasOwnProperty(Z))U=O[Z];else{H=p[Z];do if(O=N.prototype,U=O[Z],U&&(N._meta?O.hasOwnProperty(Z):U!==H))break;while(N=$[++Y])}U=N&&U||p[Z]}else{if(z.c!==F&&(Y=0,P=$[0]._meta,P&&P.ctor!==F)){for(Q=P.chains,(!Q||Q.constructor!=="manual")&&t("calling chained constructor with inherited",this.declaredClass);(N=$[++Y])&&(P=N._meta,!(P&&P.ctor===F)););Y=N?Y:-1}for(;(N=$[++Y])&&(P=N._meta,U=P?P.ctor:N,!U););U=N&&U}if(z.c=U,z.p=Y,U)return k===!0?U:U.apply(this,k||K)}function s(K,k,U){return typeof K=="string"?typeof k=="function"?this.__inherited(K,k,U,!0):this.__inherited(K,k,!0):typeof K=="function"?this.__inherited(K,k,!0):this.__inherited(K,!0)}function l(K,k,U,G){var Z=this.getInherited(K,k,U);if(Z)return Z.apply(this,G||U||k||K)}var u=_.config.isDebug?l:r;function c(K){for(var k=this.constructor._meta.bases,U=0,G=k.length;U=0;--$)Q=K[$],F=Q._meta,Q=F?F.ctor:Q,Q&&Q.apply(this,N?N[$]:U);Q=this.postscript,Q&&Q.apply(this,G)}}function w(K,k){return function(){var U=arguments,G=U,Z=U[0],Q;if(!(this instanceof U.callee))return B(U);k&&(Z&&(Q=Z.preamble,Q&&(G=Q.apply(this,G)||G)),Q=this.preamble,Q&&Q.apply(this,G)),K&&K.apply(this,U),Q=this.postscript,Q&&Q.apply(this,U)}}function b(K){return function(){var k=arguments,U=0,G,Z;try{if(!(this instanceof k.callee))return B(k)}catch(Q){}for(;G=K[U];++U)if(Z=G._meta,G=Z?Z.ctor:G,G){G.apply(this,k);break}G=this.postscript,G&&G.apply(this,k)}}function x(K,k,U){return function(){var G,Z,Q,$=0,F=1;for(U&&($=k.length-1,F=-1);G=k[$];$+=F)Z=G._meta,Q=(Z?Z.hidden:G.prototype)[K],Q&&Q.apply(this,arguments)}}function M(K){a.prototype=K.prototype;var k=new a;return a.prototype=null,k}function B(K){var k=K.callee,U=M(k);return k.apply(U,K),U}function W(K,k,U){typeof K!="string"&&(U=k,k=K,K=""),U=U||{};var G,Z,Q,$,F,P,N,O=1,H=k;if(d.call(k)=="[object Array]"?(P=n(k,K),Q=P[0],O=P.length-Q,k=P[O]):(P=[0],k?d.call(k)=="[object Function]"?(Q=k._meta,P=P.concat(Q?Q.bases:k)):t("base class is not a callable constructor.",K):k!==null&&t("unknown base class. Did you use dojo.require to pull it in?",K)),k)for(Z=O-1;G=M(k),!!Z;--Z)Q=P[Z],(Q._meta?h:g)(G,Q.prototype),v("csp-restrictions")?$=function(){}:$=new Function,$.superclass=k,$.prototype=G,k=G.constructor=$;else G={};for(W.safeMixin(G,U),Q=U.constructor,Q!==p.constructor&&(Q.nom=o,G.constructor=Q),Z=O-1;Z;--Z)Q=P[Z]._meta,Q&&Q.chains&&(N=g(N||{},Q.chains));if(G["-chains-"]&&(N=g(N||{},G["-chains-"])),k&&k.prototype&&k.prototype["-chains-"]&&(N=g(N||{},k.prototype["-chains-"])),Q=!N||!N.hasOwnProperty(o),P[0]=$=N&&N.constructor==="manual"?b(P):P.length==1?w(U.constructor,Q):T(P,Q),$._meta={bases:P,hidden:U,chains:N,parents:H,ctor:U.constructor},$.superclass=k&&k.prototype,$.extend=y,$.createSubclass=A,$.prototype=G,G.constructor=$,G.getInherited=s,G.isInstanceOf=c,G.inherited=u,G.__inherited=r,K&&(G.declaredClass=K,f.setObject(K,$)),N)for(F in N)G[F]&&typeof N[F]=="string"&&F!=o&&(Q=G[F]=x(F,P,N[F]==="after"),Q.nom=F);return $}return _.safeMixin=W.safeMixin=E,_.declare=W,W},C,I),C.exports=R},52834:(C,I,i)=>{var S,R;S=[i(27973),i(17012),i(81057),i(96250)],R=i.dj.d(S,function(_,v,f,g){if(v._fixEvent){var p=v._fixEvent;v._fixEvent=function(a,e){return a=p(a,e),a&&g.normalizeEvent(a),a}}var d={fix:function(a,e){return v._fixEvent?v._fixEvent(a,e):a},stop:function(a){f("dom-addeventlistener")||a&&a.preventDefault?(a.preventDefault(),a.stopPropagation()):(a=a||window.event,a.cancelBubble=!0,v._preventDefault.call(a))}};return f("extend-dojo")&&(_.fixEvent=d.fix,_.stopEvent=d.stop),d},C,I),C.exports=R},66662:(C,I,i)=>{var S,R;S=[i(27973),i(30114),i(70816),i(47872),i(13565),i(22097),i(42357),i(73693),i(30209)],R=i.dj.d(S,function(_,v,f,g,p,d,a,e,o){var t=f.mixin,n={},r=n._Line=function(y,A){this.start=y,this.end=A};r.prototype.getValue=function(y){return(this.end-this.start)*y+this.start};var s=n.Animation=function(y){t(this,y),f.isArray(this.curve)&&(this.curve=new r(this.curve[0],this.curve[1]))};s.prototype=new g,f.extend(s,{duration:350,repeat:0,rate:20,_percent:0,_startRepeatCount:0,_getStep:function(){var y=this._percent,A=this.easing;return A?A(y):y},_fire:function(y,A){var T=A||[];if(this[y])if(v.debugAtAllCosts)this[y].apply(this,T);else try{this[y].apply(this,T)}catch(w){console.error("exception in animation handler for:",y),console.error(w)}return this},play:function(y,A){var T=this;if(T._delayTimer&&T._clearTimer(),A)T._stopTimer(),T._active=T._paused=!1,T._percent=0;else if(T._active&&!T._paused)return T;T._fire("beforeBegin",[T.node]);var w=y||T.delay,b=f.hitch(T,"_play",A);return w>0?(T._delayTimer=setTimeout(b,w),T):(b(),T)},_play:function(y){var A=this;A._delayTimer&&A._clearTimer(),A._startTime=new Date().valueOf(),A._paused&&(A._startTime-=A.duration*A._percent),A._active=!0,A._paused=!1;var T=A.curve.getValue(A._getStep());return A._percent||(A._startRepeatCount||(A._startRepeatCount=A.repeat),A._fire("onBegin",[T])),A._fire("onPlay",[T]),A._cycle(),A},pause:function(){var y=this;return y._delayTimer&&y._clearTimer(),y._stopTimer(),y._active&&(y._paused=!0,y._fire("onPause",[y.curve.getValue(y._getStep())])),y},gotoPercent:function(y,A){var T=this;return T._stopTimer(),T._active=T._paused=!0,T._percent=y,A&&T.play(),T},stop:function(y){var A=this;return A._delayTimer&&A._clearTimer(),A._timer&&(A._stopTimer(),y&&(A._percent=1),A._fire("onStop",[A.curve.getValue(A._getStep())]),A._active=A._paused=!1),A},destroy:function(){this.stop()},status:function(){return this._active?this._paused?"paused":"playing":"stopped"},_cycle:function(){var y=this;if(y._active){var A=new Date().valueOf(),T=y.duration===0?1:(A-y._startTime)/y.duration;T>=1&&(T=1),y._percent=T,y.easing&&(T=y.easing(T)),y._fire("onAnimate",[y.curve.getValue(T)]),y._percent<1?y._startTimer():(y._active=!1,y.repeat>0?(y.repeat--,y.play(null,!0)):y.repeat==-1?y.play(null,!0):y._startRepeatCount&&(y.repeat=y._startRepeatCount,y._startRepeatCount=0),y._percent=0,y._fire("onEnd",[y.node]),!y.repeat&&y._stopTimer())}return y},_clearTimer:function(){clearTimeout(this._delayTimer),delete this._delayTimer}});var l=0,u=null,c={run:function(){}};f.extend(s,{_startTimer:function(){this._timer||(this._timer=d.after(c,"run",f.hitch(this,"_cycle"),!0),l++),u||(u=setInterval(f.hitch(c,"run"),this.rate))},_stopTimer:function(){this._timer&&(this._timer.remove(),this._timer=null,l--),l<=0&&(clearInterval(u),u=null,l=0)}});var h=a("ie")?function(y){var A=y.style;!A.width.length&&o.get(y,"width")=="auto"&&(A.width="auto")}:function(){};n._fade=function(y){y.node=e.byId(y.node);var A=t({properties:{}},y),T=A.properties.opacity={};T.start="start"in A?A.start:function(){return+o.get(A.node,"opacity")||0},T.end=A.end;var w=n.animateProperty(A);return d.after(w,"beforeBegin",f.partial(h,A.node),!0),w},n.fadeIn=function(y){return n._fade(t({end:1},y))},n.fadeOut=function(y){return n._fade(t({end:0},y))},n._defaultEasing=function(y){return .5+Math.sin((y+1.5)*Math.PI)/2};var E=function(y){this._properties=y;for(var A in y){var T=y[A];T.start instanceof p&&(T.tempColor=new p)}};return E.prototype.getValue=function(y){var A={};for(var T in this._properties){var w=this._properties[T],b=w.start;b instanceof p?A[T]=p.blendColors(b,w.end,y,w.tempColor).toCss():f.isArray(b)||(A[T]=(w.end-b)*y+b+(T!="opacity"?w.units||"px":0))}return A},n.animateProperty=function(y){var A=y.node=e.byId(y.node);y.easing||(y.easing=_._defaultEasing);var T=new s(y);return d.after(T,"beforeBegin",f.hitch(T,function(){var w={};for(var b in this.properties){(b=="width"||b=="height")&&(this.node.display="block");var x=this.properties[b];f.isFunction(x)&&(x=x(A)),x=w[b]=t({},f.isObject(x)?x:{end:x}),f.isFunction(x.start)&&(x.start=x.start(A)),f.isFunction(x.end)&&(x.end=x.end(A));var M=b.toLowerCase().indexOf("color")>=0,B=function(K,k){var U={height:K.offsetHeight,width:K.offsetWidth}[k];return U!==void 0?U:(U=o.get(K,k),k=="opacity"?+U:M?U:parseFloat(U))};"end"in x?"start"in x||(x.start=B(A,b)):x.end=B(A,b),M?(x.start=new p(x.start),x.end=new p(x.end)):x.start=b=="opacity"?+x.start:parseFloat(x.start)}this.curve=new E(w)}),!0),d.after(T,"onAnimate",f.hitch(o,"set",T.node),!0),T},n.anim=function(y,A,T,w,b,x){return n.animateProperty({node:y,duration:T||s.prototype.duration,properties:A,easing:w,onEnd:b}).play(x||0)},a("extend-dojo")&&(t(_,n),_._Animation=s),n},C,I),C.exports=R},85362:(module,exports,__webpack_require__)=>{var __WEBPACK_AMD_DEFINE_ARRAY__,__WEBPACK_AMD_DEFINE_RESULT__;__WEBPACK_AMD_DEFINE_ARRAY__=[__webpack_require__(27973),__webpack_require__(69527)],__WEBPACK_AMD_DEFINE_RESULT__=__webpack_require__.dj.d(__WEBPACK_AMD_DEFINE_ARRAY__,function(dojo,json){return dojo.fromJson=function(js){return eval("("+js+")")},dojo._escapeString=json.stringify,dojo.toJsonIndentStr=" ",dojo.toJson=function(C,I){return json.stringify(C,function(i,S){if(S){var R=S.__json__||S.json;if(typeof R=="function")return R.call(S)}return S},I&&dojo.toJsonIndentStr)},dojo},module,exports),module.exports=__WEBPACK_AMD_DEFINE_RESULT__},27973:(C,I,i)=>{var S,R;S=[i(89490),i(81057),i(30114),i.dj.c(C),i.dj.m(C)],R=i.dj.d(S,function(_,v,f,g,p){var d,a,e={},o={},t={config:f,global:_,dijit:e,dojox:o},n={dojo:["dojo",t],dijit:["dijit",e],dojox:["dojox",o]},r=g.map&&g.map[p.id.match(/[^\/]+/)[0]],s;for(a in r)n[a]?n[a][0]=r[a]:n[a]=[r[a],{}];for(a in n)s=n[a],s[1]._scopeName=s[0],f.noGlobals||(_[s[0]]=s[1]);t.scopeMap=n,t.baseUrl=t.config.baseUrl=g.baseUrl,t.isAsync=!v("dojo-loader")||g.async,t.locale=f.locale;var l="$Rev:$".match(/[0-9a-f]{7,}/);if(t.version={major:1,minor:17,patch:1,flag:"",revision:l?l[0]:NaN,toString:function(){var E=t.version;return E.major+"."+E.minor+"."+E.patch+E.flag+" ("+E.revision+")"}},v.add("extend-dojo",1),v("csp-restrictions")||Function("d","d.eval = function(){return d.global.eval ? d.global.eval(arguments[0]) : eval(arguments[0]);}")(t),v("host-rhino")?t.exit=function(E){quit(E)}:t.exit=function(){},v("host-webworker")||v.add("dojo-guarantee-console",1),v("dojo-guarantee-console")){v.add("console-as-object",function(){return Function.prototype.bind&&console&&typeof console.log=="object"}),typeof console<"u"||(console={});var u=["assert","count","debug","dir","dirxml","error","group","groupEnd","info","profile","profileEnd","time","timeEnd","trace","warn","log"],c;for(d=0;c=u[d++];)console[c]?v("console-as-object")&&(console[c]=Function.prototype.bind.call(console[c],console)):function(){var E=c+"";console[E]="log"in console?function(){var y=Array.prototype.slice.call(arguments);y.unshift(E+":"),console.log(y.join(" "))}:function(){},console[E]._fake=!0}()}if(v.add("dojo-debug-messages",!!f.isDebug),t.deprecated=t.experimental=function(){},v("dojo-debug-messages")&&(t.deprecated=function(E,y,A){var T="DEPRECATED: "+E;y&&(T+=" "+y),A&&(T+=" -- will be removed in version: "+A),console.warn(T)},t.experimental=function(E,y){var A="EXPERIMENTAL: "+E+" -- APIs subject to change without notice.";y&&(A+=" "+y),console.warn(A)}),v.add("dojo-modulePaths",1),v("dojo-modulePaths")&&f.modulePaths){t.deprecated("dojo.modulePaths","use paths configuration");var h={};for(a in f.modulePaths)h[a.replace(/\./g,"/")]=f.modulePaths[a];g({paths:h})}return v.add("dojo-moduleUrl",1),v("dojo-moduleUrl")&&(t.moduleUrl=function(E,y){t.deprecated("dojo.moduleUrl()","use require.toUrl","2.0");var A=null;return E&&(A=g.toUrl(E.replace(/\./g,"/")+(y?"/"+y:"")+"/*.*").replace(/\/\*\.\*/,"")+(y?"":"/")),A}),t._hasResource={},t},C,I),C.exports=R},70816:(C,I,i)=>{var S,R;S=[i(27973),i(81057),i(42357)],R=i.dj.d(S,function(_,v){v.add("bug-for-in-skips-shadowed",function(){for(var t in{toString:1})return 0;return 1});var f=v("bug-for-in-skips-shadowed")?"hasOwnProperty.valueOf.isPrototypeOf.propertyIsEnumerable.toLocaleString.toString.constructor".split("."):[],g=f.length,p=function(t,n,r){r||(t[0]&&_.scopeMap[t[0]]?r=_.scopeMap[t.shift()][1]:r=_.global);try{for(var s=0;s2)return o._hitchArgs.apply(_,arguments);if(n||(n=t,t=null),o.isString(n)){if(t=t||_.global,!t[n])throw['lang.hitch: scope["',n,'"] is null (scope="',t,'")'].join("");return function(){return t[n].apply(t,arguments||[])}}return t?function(){return n.apply(t,arguments||[])}:n},delegate:function(){function t(){}return function(n,r){t.prototype=n;var s=new t;return t.prototype=null,r&&o._mixin(s,r),s}}(),_toArray:v("ie")?function(){function t(n,r,s){for(var l=s||[],u=r||0;u{var S,R;S=[i(27973),i(70816),i(42357)],R=i.dj.d(S,function(_,v,f){return f("host-browser")&&(_._name="browser",v.mixin(_,{isBrowser:!0,isFF:f("ff"),isIE:f("ie"),isKhtml:f("khtml"),isWebKit:f("webkit"),isMozilla:f("mozilla"),isMoz:f("mozilla"),isOpera:f("opera"),isSafari:f("safari"),isChrome:f("chrome"),isMac:f("mac"),isIos:f("ios"),isAndroid:f("android"),isWii:f("wii"),isQuirks:f("quirks"),isAir:f("air")})),f},C,I),C.exports=R},85611:(C,I,i)=>{var S,R;S=[i(27973)],R=i.dj.d(S,function(_){var v=new RegExp("^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?$"),f=new RegExp("^((([^\\[:]+):)?([^@]+)@)?(\\[([^\\]]+)\\]|([^\\[:]*))(:([0-9]+))?$"),g=function(){for(var p=null,d=arguments,a=[d[0]],e=1;e0&&!(s==1&&r[0]=="")&&r[s]==".."&&r[s-1]!=".."&&(s==r.length-1?(r.splice(s,1),r[s-1]=""):(r.splice(s-1,2),s-=2));o.path=r.join("/")}a=[],o.scheme&&a.push(o.scheme,":"),o.authority&&a.push("//",o.authority),a.push(o.path),o.query&&a.push("?",o.query),o.fragment&&a.push("#",o.fragment)}this.uri=a.join("");var l=this.uri.match(v);this.scheme=l[2]||(l[1]?"":p),this.authority=l[4]||(l[3]?"":p),this.path=l[5],this.query=l[7]||(l[6]?"":p),this.fragment=l[9]||(l[8]?"":p),this.authority!=p&&(l=this.authority.match(f),this.user=l[3]||p,this.password=l[4]||p,this.host=l[6]||l[7],this.port=l[9]||p)};return g.prototype.toString=function(){return this.uri},_._Url=g},C,I),C.exports=R},97424:(C,I,i)=>{var S,R;S=[i(27973),i(70816),i(42357)],R=i.dj.d(S,function(_,v,f){var g={global:_.global,doc:_.global.document||null,body:function(p){return p=p||_.doc,p.body||p.getElementsByTagName("body")[0]},setContext:function(p,d){_.global=g.global=p,_.doc=g.doc=d},withGlobal:function(p,d,a,e){var o=_.global;try{return _.global=g.global=p,g.withDoc.call(null,p.document,d,a,e)}finally{_.global=g.global=o}},withDoc:function(p,d,a,e){var o=g.doc,t=f("quirks"),n=f("ie"),r,s,l;try{return _.doc=g.doc=p,_.isQuirks=f.add("quirks",_.doc.compatMode=="BackCompat",!0,!0),f("ie")&&(l=p.parentWindow)&&l.navigator&&(r=parseFloat(l.navigator.appVersion.split("MSIE ")[1])||void 0,s=p.documentMode,s&&s!=5&&Math.floor(r)!=s&&(r=s),_.isIE=f.add("ie",r,!0,!0)),a&&typeof d=="string"&&(d=a[d]),d.apply(a,e||[])}finally{_.doc=g.doc=o,_.isQuirks=f.add("quirks",t,!0,!0),_.isIE=f.add("ie",n,!0,!0)}}};return f("extend-dojo")&&v.mixin(_,g),g},C,I),C.exports=R},66e3:(C,I,i)=>{var S,R;S=[i(27973),i(63282),i.dj.c(C),i(15660),i(73693),i(9116),i(59147),i(30114),i(85362),i(70816),i(24487),i(17012),i(22097),i(11956),i(22725),i(11607)],R=i.dj.d(S,function(_,v,f,g,p,d,a,e,o,t,n,r,s,l,u,c){_._xhrObj=u._create;var h=_.config;_.objectToQuery=g.objectToQuery,_.queryToObject=g.queryToObject,_.fieldToObject=d.fieldToObject,_.formToObject=d.toObject,_.formToQuery=d.toQuery,_.formToJson=d.toJson,_._blockAsync=!1;var E=_._contentHandlers=_.contentHandlers={text:function(x){return x.responseText},json:function(x){return o.fromJson(x.responseText||null)},"json-comment-filtered":function(x){e.useCommentedJson||console.warn(`Consider using the standard mimetype:application/json. json-commenting can introduce security issues. To decrease the chances of hijacking, use the standard the 'json' handler and prefix your json with: {}&& -Use djConfig.useCommentedJson=true to turn off this message.`);var M=x.responseText,B=M.indexOf("/*"),W=M.lastIndexOf("*/");if(B==-1||W==-1)throw new Error("JSON was not comment filtered");return o.fromJson(M.substring(B+2,W))},javascript:function(x){return _.eval(x.responseText)},xml:function(x){var M=x.responseXML;if(M&&v("dom-qsa2.1")&&!M.querySelectorAll&&v("dom-parser")&&(M=new DOMParser().parseFromString(x.responseText,"application/xml")),v("ie")&&(!M||!M.documentElement)){var B=function(K){return"MSXML"+K+".DOMDocument"},W=["Microsoft.XMLDOM",B(6),B(4),B(3),B(2)];n.some(W,function(K){try{var k=new ActiveXObject(K);k.async=!1,k.loadXML(x.responseText),M=k}catch(U){return!1}return!0})}return M},"json-comment-optional":function(x){return x.responseText&&/^[^{\[]*\/\*/.test(x.responseText)?E["json-comment-filtered"](x):E.json(x)}};_._ioSetArgs=function(x,M,B,W){var K={args:x,url:x.url},k=null;if(x.form){var U=p.byId(x.form),G=U.getAttributeNode("action");K.url=K.url||(G?G.value:_.doc?_.doc.URL:null),k=d.toObject(U)}var Z={};k&&t.mixin(Z,k),x.content&&t.mixin(Z,x.content),x.preventCache&&(Z["dojo.preventCache"]=new Date().valueOf()),K.query=g.objectToQuery(Z),K.handleAs=x.handleAs||"text";var Q=new a(function(N){N.canceled=!0,M&&M(N);var O=N.ioArgs.error;return O||(O=new Error("request cancelled"),O.dojoType="cancel",N.ioArgs.error=O),O});Q.addCallback(B);var $=x.load;$&&t.isFunction($)&&Q.addCallback(function(N){return $.call(x,N,K)});var F=x.error;F&&t.isFunction(F)&&Q.addErrback(function(N){return F.call(x,N,K)});var P=x.handle;return P&&t.isFunction(P)&&Q.addBoth(function(N){return P.call(x,N,K)}),Q.addErrback(function(N){return W(N,Q)}),h.ioPublish&&_.publish&&K.args.ioPublish!==!1&&(Q.addCallbacks(function(N){return _.publish("/dojo/io/load",[Q,N]),N},function(N){return _.publish("/dojo/io/error",[Q,N]),N}),Q.addBoth(function(N){return _.publish("/dojo/io/done",[Q,N]),N})),Q.ioArgs=K,Q};var y=function(x){var M=E[x.ioArgs.handleAs](x.ioArgs.xhr);return M===void 0?null:M},A=function(x,M){return M.ioArgs.args.failOk||console.error(x),x},T=function(x){w<=0&&(w=0,h.ioPublish&&_.publish&&(!x||x&&x.ioArgs.args.ioPublish!==!1)&&_.publish("/dojo/io/stop"))},w=0;s.after(l,"_onAction",function(){w-=1}),s.after(l,"_onInFlight",T),_._ioCancelAll=l.cancelAll,_._ioNotifyStart=function(x){h.ioPublish&&_.publish&&x.ioArgs.args.ioPublish!==!1&&(w||_.publish("/dojo/io/start"),w+=1,_.publish("/dojo/io/send",[x]))},_._ioWatch=function(x,M,B,W){var K=x.ioArgs.options=x.ioArgs.args;t.mixin(x,{response:x.ioArgs,isValid:function(k){return M(x)},isReady:function(k){return B(x)},handleResponse:function(k){return W(x)}}),l(x),T(x)};var b="application/x-www-form-urlencoded";return _._ioAddQueryToUrl=function(x){x.query.length&&(x.url+=(x.url.indexOf("?")==-1?"?":"&")+x.query,x.query=null)},_.xhr=function(x,M,B){var W,K=_._ioSetArgs(M,function(G){W&&W.cancel()},y,A),k=K.ioArgs;"postData"in M?k.query=M.postData:"putData"in M?k.query=M.putData:"rawBody"in M?k.query=M.rawBody:(arguments.length>2&&!B||"POST|PUT".indexOf(x.toUpperCase())===-1)&&_._ioAddQueryToUrl(k);var U={method:x,handleAs:"text",timeout:M.timeout,withCredentials:M.withCredentials,ioArgs:k};typeof M.headers<"u"&&(U.headers=M.headers),typeof M.contentType<"u"&&(U.headers||(U.headers={}),U.headers["Content-Type"]=M.contentType),typeof k.query<"u"&&(U.data=k.query),typeof M.sync<"u"&&(U.sync=M.sync),_._ioNotifyStart(K);try{W=u(k.url,U,!0)}catch(G){return K.cancel(),K}return K.ioArgs.xhr=W.response.xhr,W.then(function(){K.resolve(K)}).otherwise(function(G){k.error=G,G.response&&(G.status=G.response.status,G.responseText=G.response.text,G.xhr=G.response.xhr),K.reject(G)}),K},_.xhrGet=function(x){return _.xhr("GET",x)},_.rawXhrPost=_.xhrPost=function(x){return _.xhr("POST",x,!0)},_.rawXhrPut=_.xhrPut=function(x){return _.xhr("PUT",x,!0)},_.xhrDelete=function(x){return _.xhr("DELETE",x)},_._isDocumentOk=function(x){return c.checkStatus(x.status)},_._getText=function(x){var M;return _.xhrGet({url:x,sync:!0,load:function(B){M=B}}),M},t.mixin(_.xhr,{_xhrObj:_._xhrObj,fieldToObject:d.fieldToObject,formToObject:d.toObject,objectToQuery:g.objectToQuery,formToQuery:d.toQuery,formToJson:d.toJson,queryToObject:g.queryToObject,contentHandlers:E,_ioSetArgs:_._ioSetArgs,_ioCancelAll:_._ioCancelAll,_ioNotifyStart:_._ioNotifyStart,_ioWatch:_._ioWatch,_ioAddQueryToUrl:_._ioAddQueryToUrl,_isDocumentOk:_._isDocumentOk,_getText:_._getText,get:_.xhrGet,post:_.xhrPost,put:_.xhrPut,del:_.xhrDelete}),_.xhr},C,I),C.exports=R},22097:(C,I,i)=>{var S,R;S=[],R=i.dj.d(S,function(){"use strict";var _;function v(a,e,o,t){var n=a[e],r=e=="around",s;if(r){var l=o(function(){return n.advice(this,arguments)});s={remove:function(){l&&(l=a=o=null)},advice:function(u,c){return l?l.apply(u,c):n.advice(u,c)}}}else s={remove:function(){if(s.advice){var u=s.previous,c=s.next;!c&&!u?delete a[e]:(u?u.next=c:a[e]=c,c&&(c.previous=u)),a=o=s.advice=null}},id:a.nextId++,advice:o,receiveArguments:t};if(n&&!r)if(e=="after"){for(;n.next&&(n=n.next););n.next=s,s.previous=n}else e=="before"&&(a[e]=s,s.next=n,n.previous=s);else a[e]=s;return s}function f(a){return function(e,o,t,n){var r=e[o],s;(!r||r.target!=e)&&(e[o]=s=function(){for(var u=s.nextId,c=arguments,h=s.before;h;)h.advice&&(c=h.advice.apply(this,c)||c),h=h.next;if(s.around)var E=s.around.advice(this,c);for(var y=s.after;y&&y.id{var S,R;S=[i(27973),i(37686)],R=i.dj.d(S,function(_){return _.cache},C,I),C.exports=R},92489:(C,I,i)=>{var S,R;S=[i(70816),i(24487)],R=i.dj.d(S,function(_,v){var f={};return _.setObject("dojo.date.stamp",f),f.fromISOString=function(g,p){f._isoRegExp||(f._isoRegExp=/^(?:(\d{4})(?:-(\d{2})(?:-(\d{2}))?)?)?(?:T(\d{2}):(\d{2})(?::(\d{2})(.\d+)?)?((?:[+-](\d{2}):(\d{2}))|Z)?)?$/);var d=f._isoRegExp.exec(g),a=null;if(d){d.shift(),d[1]&&d[1]--,d[6]&&(d[6]*=1e3),p&&(p=new Date(p),v.forEach(v.map(["FullYear","Month","Date","Hours","Minutes","Seconds","Milliseconds"],function(t){return p["get"+t]()}),function(t,n){d[n]=d[n]||t})),a=new Date(d[0]||1970,d[1]||0,d[2]||1,d[3]||0,d[4]||0,d[5]||0,d[6]||0),d[0]<100&&a.setFullYear(d[0]||1970);var e=0,o=d[7]&&d[7].charAt(0);o!="Z"&&(e=(d[8]||0)*60+(Number(d[9])||0),o!="-"&&(e*=-1)),o&&(e-=a.getTimezoneOffset()),e&&a.setTime(a.getTime()+e*6e4)}return a},f.toISOString=function(g,p){var d=function(u){return u<10?"0"+u:u};p=p||{};var a=[],e=p.zulu?"getUTC":"get",o="";if(p.selector!="time"){var t=g[e+"FullYear"]();o=["0000".substr((t+"").length)+t,d(g[e+"Month"]()+1),d(g[e+"Date"]())].join("-")}if(a.push(o),p.selector!="date"){var n=[d(g[e+"Hours"]()),d(g[e+"Minutes"]()),d(g[e+"Seconds"]())].join(":"),r=g[e+"Milliseconds"]();if(p.milliseconds&&(n+="."+(r<100?"0":"")+d(r)),p.zulu)n+="Z";else if(p.selector!="time"){var s=g.getTimezoneOffset(),l=Math.abs(s);n+=(s>0?"-":"+")+d(Math.floor(l/60))+":"+d(l%60)}a.push(n)}return a.join("T")},f},C,I),C.exports=R},16773:(C,I,i)=>{var S,R;S=[I,i(42357),i(70816),i(73693),i(30209),i(2431)],R=i.dj.d(S,function(_,v,f,g,p,d){var a={innerHTML:1,textContent:1,className:1,htmlFor:v("ie")?1:0,value:1},e={classname:"class",htmlfor:"for",tabindex:"tabIndex",readonly:"readOnly"};function o(t,n){var r=t.getAttributeNode&&t.getAttributeNode(n);return!!r&&r.specified}_.has=function(n,r){var s=r.toLowerCase();return!!a[d.names[s]||r]||o(g.byId(n),e[s]||r)},_.get=function(n,r){n=g.byId(n);var s=r.toLowerCase(),l=d.names[s]||r,u=a[l],c=n[l];if(u&&typeof c<"u")return c;if(l=="textContent")return d.get(n,l);if(l!="href"&&(typeof c=="boolean"||f.isFunction(c)))return c;var h=e[s]||r;return o(n,h)?n.getAttribute(h):null},_.set=function(n,r,s){if(n=g.byId(n),arguments.length==2){for(var l in r)_.set(n,l,r[l]);return n}var u=r.toLowerCase(),c=d.names[u]||r,h=a[c];return c=="style"&&typeof s!="string"?(p.set(n,s),n):h||typeof s=="boolean"||f.isFunction(s)?d.set(n,r,s):(n.setAttribute(e[u]||r,s),n)},_.remove=function(n,r){g.byId(n).removeAttribute(e[r.toLowerCase()]||r)},_.getNodeProp=function(n,r){n=g.byId(n);var s=r.toLowerCase(),l=d.names[s]||r;if(l in n&&l!="href")return n[l];var u=e[s]||r;return o(n,u)?n.getAttribute(u):null}},C,I),C.exports=R},97660:(C,I,i)=>{var S,R;S=[i(70816),i(24487),i(73693)],R=i.dj.d(S,function(_,v,f){var g="className",p,d=/\s+/,a=[""];function e(t){if(typeof t=="string"||t instanceof String){if(t&&!d.test(t))return a[0]=t,a;var n=t.split(d);return n.length&&!n[0]&&n.shift(),n.length&&!n[n.length-1]&&n.pop(),n}return t?v.filter(t,function(r){return r}):[]}var o={};return p={contains:function(n,r){return(" "+f.byId(n)[g]+" ").indexOf(" "+r+" ")>=0},add:function(n,r){n=f.byId(n),r=e(r);var s=n[g],l;s=s?" "+s+" ":" ",l=s.length;for(var u=0,c=r.length,h;u{var S,R;S=[I,i(27973),i(42357),i(97424),i(73693),i(16773)],R=i.dj.d(S,function(_,v,f,g,p,d){var a={option:["select"],tbody:["table"],thead:["table"],tfoot:["table"],tr:["table","tbody"],td:["table","tbody","tr"],th:["table","thead","tr"],legend:["fieldset"],caption:["table"],colgroup:["table"],col:["table","colgroup"],li:["ul"]},e=/<\s*([\w\:]+)/,o={},t=0,n="__"+v._scopeName+"ToDomId";for(var r in a)if(a.hasOwnProperty(r)){var s=a[r];s.pre=r=="option"?''},53778:C=>{C.exports=`
`},2958:C=>{C.exports='
\n
\n
\n
\n
50%
\n
'},49666:(C,I,i)=>{"use strict";(function(S,R){C.exports=R(i(32967))})(void 0,function(S){"use strict";var R='.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}';function _(ge){var _e=document.createElement("style");_e.textContent=ge,_e.setAttribute("data-tippy-stylesheet","");var we=document.head,We=document.querySelector("head>style,head>link");We?we.insertBefore(_e,We):we.appendChild(_e)}var v=typeof window<"u"&&typeof document<"u",f=v?!!window.msCrypto:!1,g='',p="tippy-box",d="tippy-content",a="tippy-backdrop",e="tippy-arrow",o="tippy-svg-arrow",t={passive:!0,capture:!0},n=function(){return document.body};function r(ge,_e){return{}.hasOwnProperty.call(ge,_e)}function s(ge,_e,we){if(Array.isArray(ge)){var We=ge[_e];return We==null?Array.isArray(we)?we[_e]:we:We}return ge}function l(ge,_e){var we={}.toString.call(ge);return we.indexOf("[object")===0&&we.indexOf(_e+"]")>-1}function u(ge,_e){return typeof ge=="function"?ge.apply(void 0,_e):ge}function c(ge,_e){if(_e===0)return ge;var we;return function(We){clearTimeout(we),we=setTimeout(function(){ge(We)},_e)}}function h(ge,_e){var we=Object.assign({},ge);return _e.forEach(function(We){delete we[We]}),we}function E(ge){return ge.split(/\s+/).filter(Boolean)}function y(ge){return[].concat(ge)}function A(ge,_e){ge.indexOf(_e)===-1&&ge.push(_e)}function T(ge){return ge.filter(function(_e,we){return ge.indexOf(_e)===we})}function w(ge){return ge.split("-")[0]}function b(ge){return[].slice.call(ge)}function x(ge){return Object.keys(ge).reduce(function(_e,we){return ge[we]!==void 0&&(_e[we]=ge[we]),_e},{})}function M(){return document.createElement("div")}function B(ge){return["Element","Fragment"].some(function(_e){return l(ge,_e)})}function W(ge){return l(ge,"NodeList")}function K(ge){return l(ge,"MouseEvent")}function k(ge){return!!(ge&&ge._tippy&&ge._tippy.reference===ge)}function U(ge){return B(ge)?[ge]:W(ge)?b(ge):Array.isArray(ge)?ge:b(document.querySelectorAll(ge))}function G(ge,_e){ge.forEach(function(we){we&&(we.style.transitionDuration=_e+"ms")})}function Z(ge,_e){ge.forEach(function(we){we&&we.setAttribute("data-state",_e)})}function Q(ge){var _e,we=y(ge),We=we[0];return We!=null&&(_e=We.ownerDocument)!=null&&_e.body?We.ownerDocument:document}function $(ge,_e){var we=_e.clientX,We=_e.clientY;return ge.every(function(tt){var Je=tt.popperRect,Ze=tt.popperState,ht=tt.props,gt=ht.interactiveBorder,Ct=w(Ze.placement),Nt=Ze.modifiersData.offset;if(!Nt)return!0;var rn=Ct==="bottom"?Nt.top.y:0,$t=Ct==="top"?Nt.bottom.y:0,sn=Ct==="right"?Nt.left.x:0,Ft=Ct==="left"?Nt.right.x:0,yt=Je.top-We+rn>gt,Dt=We-Je.bottom-$t>gt,ot=Je.left-we+sn>gt,Kt=we-Je.right-Ft>gt;return yt||Dt||ot||Kt})}function F(ge,_e,we){if(we){var We=_e+"EventListener";["transitionend","webkitTransitionEnd"].forEach(function(tt){ge[We](tt,we)})}}function P(ge,_e){for(var we=_e;we;){var We;if(ge.contains(we))return!0;we=we.getRootNode==null||(We=we.getRootNode())==null?void 0:We.host}return!1}var N={isTouch:!1},O=0;function H(){N.isTouch||(N.isTouch=!0,window.performance&&document.addEventListener("mousemove",Y))}function Y(){var ge=performance.now();ge-O<20&&(N.isTouch=!1,document.removeEventListener("mousemove",Y)),O=ge}function z(){var ge=document.activeElement;if(k(ge)){var _e=ge._tippy;ge.blur&&!_e.state.isVisible&&ge.blur()}}function J(){document.addEventListener("touchstart",H,t),window.addEventListener("blur",z)}function ne(ge){var _e=ge==="destroy"?"n already-":" ";return[ge+"() was called on a"+_e+"destroyed instance. This is a no-op but","indicates a potential memory leak."].join(" ")}function ie(ge){var _e=/[ \t]{2,}/g,we=/^[ \t]*/gm;return ge.replace(_e," ").replace(we,"").trim()}function se(ge){return ie(` - %ctippy.js - - %c`+ie(ge)+` - - %cThis is a development-only message. It will be removed in production. - `)}function ce(ge){return[se(ge),"color: #00C584; font-size: 1.3em; font-weight: bold;","line-height: 1.5","color: #a6a095;"]}var De;he();function he(){De=new Set}function ye(ge,_e){if(ge&&!De.has(_e)){var we;De.add(_e),(we=console).warn.apply(we,ce(_e))}}function ke(ge,_e){if(ge&&!De.has(_e)){var we;De.add(_e),(we=console).error.apply(we,ce(_e))}}function Se(ge){var _e=!ge,we=Object.prototype.toString.call(ge)==="[object Object]"&&!ge.addEventListener;ke(_e,["tippy() was passed","`"+String(ge)+"`","as its targets (first) argument. Valid types are: String, Element,","Element[], or NodeList."].join(" ")),ke(we,["tippy() was passed a plain object which is not supported as an argument","for virtual positioning. Use props.getReferenceClientRect instead."].join(" "))}var Fe={animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},Xe={allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999},Le=Object.assign({appendTo:n,aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},Fe,Xe),ue=Object.keys(Le),fe=function(_e){{var we=Le.plugins.concat(_e.plugins||[]);ze(_e,we)}var We=Object.keys(_e);We.forEach(function(tt){Le[tt]=_e[tt]})};function xe(ge){var _e=ge.plugins||[],we=_e.reduce(function(We,tt){var Je=tt.name,Ze=tt.defaultValue;if(Je){var ht;We[Je]=ge[Je]!==void 0?ge[Je]:(ht=Le[Je])!=null?ht:Ze}return We},{});return Object.assign({},ge,we)}function Ie(ge,_e){var we=_e?Object.keys(xe(Object.assign({},Le,{plugins:_e}))):ue,We=we.reduce(function(tt,Je){var Ze=(ge.getAttribute("data-tippy-"+Je)||"").trim();if(!Ze)return tt;if(Je==="content")tt[Je]=Ze;else try{tt[Je]=JSON.parse(Ze)}catch(ht){tt[Je]=Ze}return tt},{});return We}function Oe(ge,_e){var we=Object.assign({},_e,{content:u(_e.content,[ge])},_e.ignoreAttributes?{}:Ie(ge,_e.plugins));return we.aria=Object.assign({},Le.aria,we.aria),we.aria={expanded:we.aria.expanded==="auto"?_e.interactive:we.aria.expanded,content:we.aria.content==="auto"?_e.interactive?null:"describedby":we.aria.content},we}function ze(ge,_e){ge===void 0&&(ge={}),_e===void 0&&(_e=[]);var we=Object.keys(ge);we.forEach(function(We){var tt=h(Le,Object.keys(Fe)),Je=!r(tt,We);Je&&(Je=_e.filter(function(Ze){return Ze.name===We}).length===0),ye(Je,["`"+We+"`","is not a valid prop. You may have spelled it incorrectly, or if it's","a plugin, forgot to pass it in an array as props.plugins.",` - -`,`All props: https://atomiks.github.io/tippyjs/v6/all-props/ -`,"Plugins: https://atomiks.github.io/tippyjs/v6/plugins/"].join(" "))})}var pt=function(){return"innerHTML"};function Tt(ge,_e){ge[pt()]=_e}function Lt(ge){var _e=M();return ge===!0?_e.className=e:(_e.className=o,B(ge)?_e.appendChild(ge):Tt(_e,ge)),_e}function It(ge,_e){B(_e.content)?(Tt(ge,""),ge.appendChild(_e.content)):typeof _e.content!="function"&&(_e.allowHTML?Tt(ge,_e.content):ge.textContent=_e.content)}function Ht(ge){var _e=ge.firstElementChild,we=b(_e.children);return{box:_e,content:we.find(function(We){return We.classList.contains(d)}),arrow:we.find(function(We){return We.classList.contains(e)||We.classList.contains(o)}),backdrop:we.find(function(We){return We.classList.contains(a)})}}function jt(ge){var _e=M(),we=M();we.className=p,we.setAttribute("data-state","hidden"),we.setAttribute("tabindex","-1");var We=M();We.className=d,We.setAttribute("data-state","hidden"),It(We,ge.props),_e.appendChild(we),we.appendChild(We),tt(ge.props,ge.props);function tt(Je,Ze){var ht=Ht(_e),gt=ht.box,Ct=ht.content,Nt=ht.arrow;Ze.theme?gt.setAttribute("data-theme",Ze.theme):gt.removeAttribute("data-theme"),typeof Ze.animation=="string"?gt.setAttribute("data-animation",Ze.animation):gt.removeAttribute("data-animation"),Ze.inertia?gt.setAttribute("data-inertia",""):gt.removeAttribute("data-inertia"),gt.style.maxWidth=typeof Ze.maxWidth=="number"?Ze.maxWidth+"px":Ze.maxWidth,Ze.role?gt.setAttribute("role",Ze.role):gt.removeAttribute("role"),(Je.content!==Ze.content||Je.allowHTML!==Ze.allowHTML)&&It(Ct,ge.props),Ze.arrow?Nt?Je.arrow!==Ze.arrow&&(gt.removeChild(Nt),gt.appendChild(Lt(Ze.arrow))):gt.appendChild(Lt(Ze.arrow)):Nt&>.removeChild(Nt)}return{popper:_e,onUpdate:tt}}jt.$$tippy=!0;var _n=1,an=[],nn=[];function pn(ge,_e){var we=Oe(ge,Object.assign({},Le,xe(x(_e)))),We,tt,Je,Ze=!1,ht=!1,gt=!1,Ct=!1,Nt,rn,$t,sn=[],Ft=c(ft,we.interactiveDebounce),yt,Dt=_n++,ot=null,Kt=T(we.plugins),tn={isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},Ce={id:Dt,reference:ge,popper:M(),popperInstance:ot,props:we,state:tn,plugins:Kt,clearDelayTimeouts:Bn,setProps:$n,setContent:ir,show:fr,hide:Gr,hideWithInteractivity:Ir,enable:Fn,disable:On,unmount:Er,destroy:yi};if(!we.render)return ke(!0,"render() function has not been supplied."),Ce;var xt=we.render(Ce),q=xt.popper,de=xt.onUpdate;q.setAttribute("data-tippy-root",""),q.id="tippy-"+Ce.id,Ce.popper=q,ge._tippy=Ce,q._tippy=Ce;var ee=Kt.map(function(Me){return Me.fn(Ce)}),te=ge.hasAttribute("aria-expanded");return zt(),Xt(),ut(),Qe("onCreate",[Ce]),we.showOnCreate&&rr(),q.addEventListener("mouseenter",function(){Ce.props.interactive&&Ce.state.isVisible&&Ce.clearDelayTimeouts()}),q.addEventListener("mouseleave",function(){Ce.props.interactive&&Ce.props.trigger.indexOf("mouseenter")>=0&&Be().addEventListener("mousemove",Ft)}),Ce;function oe(){var Me=Ce.props.touch;return Array.isArray(Me)?Me:[Me,0]}function ve(){return oe()[0]==="hold"}function me(){var Me;return!!((Me=Ce.props.render)!=null&&Me.$$tippy)}function Pe(){return yt||ge}function Be(){var Me=Pe().parentNode;return Me?Q(Me):document}function Ue(){return Ht(q)}function qe(Me){return Ce.state.isMounted&&!Ce.state.isVisible||N.isTouch?0:s(Ce.props.delay,Me?0:1,Le.delay)}function ut(Me){Me===void 0&&(Me=!1),q.style.pointerEvents=Ce.props.interactive&&!Me?"":"none",q.style.zIndex=""+Ce.props.zIndex}function Qe(Me,nt,mt){if(mt===void 0&&(mt=!0),ee.forEach(function(Wt){Wt[Me]&&Wt[Me].apply(Wt,nt)}),mt){var Bt;(Bt=Ce.props)[Me].apply(Bt,nt)}}function Yt(){var Me=Ce.props.aria;if(Me.content){var nt="aria-"+Me.content,mt=q.id,Bt=y(Ce.props.triggerTarget||ge);Bt.forEach(function(Wt){var yn=Wt.getAttribute(nt);if(Ce.state.isVisible)Wt.setAttribute(nt,yn?yn+" "+mt:mt);else{var Rn=yn&&yn.replace(mt,"").trim();Rn?Wt.setAttribute(nt,Rn):Wt.removeAttribute(nt)}})}}function Xt(){if(!(te||!Ce.props.aria.expanded)){var Me=y(Ce.props.triggerTarget||ge);Me.forEach(function(nt){Ce.props.interactive?nt.setAttribute("aria-expanded",Ce.state.isVisible&&nt===Pe()?"true":"false"):nt.removeAttribute("aria-expanded")})}}function kt(){Be().removeEventListener("mousemove",Ft),an=an.filter(function(Me){return Me!==Ft})}function Ot(Me){if(!(N.isTouch&&(gt||Me.type==="mousedown"))){var nt=Me.composedPath&&Me.composedPath()[0]||Me.target;if(!(Ce.props.interactive&&P(q,nt))){if(y(Ce.props.triggerTarget||ge).some(function(mt){return P(mt,nt)})){if(N.isTouch||Ce.state.isVisible&&Ce.props.trigger.indexOf("click")>=0)return}else Qe("onClickOutside",[Ce,Me]);Ce.props.hideOnClick===!0&&(Ce.clearDelayTimeouts(),Ce.hide(),ht=!0,setTimeout(function(){ht=!1}),Ce.state.isMounted||Re())}}}function Qt(){gt=!0}function Vt(){gt=!1}function cn(){var Me=Be();Me.addEventListener("mousedown",Ot,!0),Me.addEventListener("touchend",Ot,t),Me.addEventListener("touchstart",Vt,t),Me.addEventListener("touchmove",Qt,t)}function Re(){var Me=Be();Me.removeEventListener("mousedown",Ot,!0),Me.removeEventListener("touchend",Ot,t),Me.removeEventListener("touchstart",Vt,t),Me.removeEventListener("touchmove",Qt,t)}function je(Me,nt){et(Me,function(){!Ce.state.isVisible&&q.parentNode&&q.parentNode.contains(q)&&nt()})}function Ve(Me,nt){et(Me,nt)}function et(Me,nt){var mt=Ue().box;function Bt(Wt){Wt.target===mt&&(F(mt,"remove",Bt),nt())}if(Me===0)return nt();F(mt,"remove",rn),F(mt,"add",Bt),rn=Bt}function wt(Me,nt,mt){mt===void 0&&(mt=!1);var Bt=y(Ce.props.triggerTarget||ge);Bt.forEach(function(Wt){Wt.addEventListener(Me,nt,mt),sn.push({node:Wt,eventType:Me,handler:nt,options:mt})})}function zt(){ve()&&(wt("touchstart",Pt,{passive:!0}),wt("touchend",Mt,{passive:!0})),E(Ce.props.trigger).forEach(function(Me){if(Me!=="manual")switch(wt(Me,Pt),Me){case"mouseenter":wt("mouseleave",Mt);break;case"focus":wt(f?"focusout":"blur",dn);break;case"focusin":wt("focusout",dn);break}})}function Zt(){sn.forEach(function(Me){var nt=Me.node,mt=Me.eventType,Bt=Me.handler,Wt=Me.options;nt.removeEventListener(mt,Bt,Wt)}),sn=[]}function Pt(Me){var nt,mt,Bt=!1;if(!(!Ce.state.isEnabled||Ut(Me)||ht)){var Wt=((nt=Nt)==null?void 0:nt.type)==="focus"||((mt=Nt)==null?void 0:mt.type)==="focusin";Nt=Me,yt=Me.currentTarget,Xt(),!Ce.state.isVisible&&K(Me)&&an.forEach(function(yn){return yn(Me)}),Me.type==="click"&&(Ce.props.trigger.indexOf("mouseenter")<0||Ze)&&Ce.props.hideOnClick!==!1&&Ce.state.isVisible?Bt=!0:rr(Me),Me.type==="click"&&(Ze=!Bt),Bt&&!Wt&&Jn(Me)}}function ft(Me){var nt=Me.target,mt=Pe().contains(nt)||q.contains(nt);if(!(Me.type==="mousemove"&&mt)){var Bt=Dn().concat(q).map(function(Wt){var yn,Rn=Wt._tippy,cr=(yn=Rn.popperInstance)==null?void 0:yn.state;return cr?{popperRect:Wt.getBoundingClientRect(),popperState:cr,props:we}:null}).filter(Boolean);$(Bt,Me)&&(kt(),Jn(Me))}}function Mt(Me){var nt=Ut(Me)||Ce.props.trigger.indexOf("click")>=0&&Ze;if(!nt){if(Ce.props.interactive){Ce.hideWithInteractivity(Me);return}Jn(Me)}}function dn(Me){Ce.props.trigger.indexOf("focusin")<0&&Me.target!==Pe()||Ce.props.interactive&&Me.relatedTarget&&q.contains(Me.relatedTarget)||Jn(Me)}function Ut(Me){return N.isTouch?ve()!==Me.type.indexOf("touch")>=0:!1}function Gn(){hn();var Me=Ce.props,nt=Me.popperOptions,mt=Me.placement,Bt=Me.offset,Wt=Me.getReferenceClientRect,yn=Me.moveTransition,Rn=me()?Ht(q).arrow:null,cr=Wt?{getBoundingClientRect:Wt,contextElement:Wt.contextElement||Pe()}:ge,Br={name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(Wn){var Nr=Wn.state;if(me()){var vo=Ue(),dr=vo.box;["placement","reference-hidden","escaped"].forEach(function($r){$r==="placement"?dr.setAttribute("data-placement",Nr.placement):Nr.attributes.popper["data-popper-"+$r]?dr.setAttribute("data-"+$r,""):dr.removeAttribute("data-"+$r)}),Nr.attributes.popper={}}}},or=[{name:"offset",options:{offset:Bt}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!yn}},Br];me()&&Rn&&or.push({name:"arrow",options:{element:Rn,padding:3}}),or.push.apply(or,(nt==null?void 0:nt.modifiers)||[]),Ce.popperInstance=S.createPopper(cr,q,Object.assign({},nt,{placement:mt,onFirstUpdate:$t,modifiers:or}))}function hn(){Ce.popperInstance&&(Ce.popperInstance.destroy(),Ce.popperInstance=null)}function Cn(){var Me=Ce.props.appendTo,nt,mt=Pe();Ce.props.interactive&&Me===n||Me==="parent"?nt=mt.parentNode:nt=u(Me,[mt]),nt.contains(q)||nt.appendChild(q),Ce.state.isMounted=!0,Gn(),ye(Ce.props.interactive&&Me===Le.appendTo&&mt.nextElementSibling!==q,["Interactive tippy element may not be accessible via keyboard","navigation because it is not directly after the reference element","in the DOM source order.",` - -`,"Using a wrapper
or tag around the reference element","solves this by creating a new parentNode context.",` - -`,"Specifying `appendTo: document.body` silences this warning, but it","assumes you are using a focus management solution to handle","keyboard navigation.",` - -`,"See: https://atomiks.github.io/tippyjs/v6/accessibility/#interactivity"].join(" "))}function Dn(){return b(q.querySelectorAll("[data-tippy-root]"))}function rr(Me){Ce.clearDelayTimeouts(),Me&&Qe("onTrigger",[Ce,Me]),cn();var nt=qe(!0),mt=oe(),Bt=mt[0],Wt=mt[1];N.isTouch&&Bt==="hold"&&Wt&&(nt=Wt),nt?We=setTimeout(function(){Ce.show()},nt):Ce.show()}function Jn(Me){if(Ce.clearDelayTimeouts(),Qe("onUntrigger",[Ce,Me]),!Ce.state.isVisible){Re();return}if(!(Ce.props.trigger.indexOf("mouseenter")>=0&&Ce.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(Me.type)>=0&&Ze)){var nt=qe(!1);nt?tt=setTimeout(function(){Ce.state.isVisible&&Ce.hide()},nt):Je=requestAnimationFrame(function(){Ce.hide()})}}function Fn(){Ce.state.isEnabled=!0}function On(){Ce.hide(),Ce.state.isEnabled=!1}function Bn(){clearTimeout(We),clearTimeout(tt),cancelAnimationFrame(Je)}function $n(Me){if(ye(Ce.state.isDestroyed,ne("setProps")),!Ce.state.isDestroyed){Qe("onBeforeUpdate",[Ce,Me]),Zt();var nt=Ce.props,mt=Oe(ge,Object.assign({},nt,x(Me),{ignoreAttributes:!0}));Ce.props=mt,zt(),nt.interactiveDebounce!==mt.interactiveDebounce&&(kt(),Ft=c(ft,mt.interactiveDebounce)),nt.triggerTarget&&!mt.triggerTarget?y(nt.triggerTarget).forEach(function(Bt){Bt.removeAttribute("aria-expanded")}):mt.triggerTarget&&ge.removeAttribute("aria-expanded"),Xt(),ut(),de&&de(nt,mt),Ce.popperInstance&&(Gn(),Dn().forEach(function(Bt){requestAnimationFrame(Bt._tippy.popperInstance.forceUpdate)})),Qe("onAfterUpdate",[Ce,Me])}}function ir(Me){Ce.setProps({content:Me})}function fr(){ye(Ce.state.isDestroyed,ne("show"));var Me=Ce.state.isVisible,nt=Ce.state.isDestroyed,mt=!Ce.state.isEnabled,Bt=N.isTouch&&!Ce.props.touch,Wt=s(Ce.props.duration,0,Le.duration);if(!(Me||nt||mt||Bt)&&!Pe().hasAttribute("disabled")&&(Qe("onShow",[Ce],!1),Ce.props.onShow(Ce)!==!1)){if(Ce.state.isVisible=!0,me()&&(q.style.visibility="visible"),ut(),cn(),Ce.state.isMounted||(q.style.transition="none"),me()){var yn=Ue(),Rn=yn.box,cr=yn.content;G([Rn,cr],0)}$t=function(){var or;if(!(!Ce.state.isVisible||Ct)){if(Ct=!0,q.offsetHeight,q.style.transition=Ce.props.moveTransition,me()&&Ce.props.animation){var br=Ue(),Wn=br.box,Nr=br.content;G([Wn,Nr],Wt),Z([Wn,Nr],"visible")}Yt(),Xt(),A(nn,Ce),(or=Ce.popperInstance)==null||or.forceUpdate(),Qe("onMount",[Ce]),Ce.props.animation&&me()&&Ve(Wt,function(){Ce.state.isShown=!0,Qe("onShown",[Ce])})}},Cn()}}function Gr(){ye(Ce.state.isDestroyed,ne("hide"));var Me=!Ce.state.isVisible,nt=Ce.state.isDestroyed,mt=!Ce.state.isEnabled,Bt=s(Ce.props.duration,1,Le.duration);if(!(Me||nt||mt)&&(Qe("onHide",[Ce],!1),Ce.props.onHide(Ce)!==!1)){if(Ce.state.isVisible=!1,Ce.state.isShown=!1,Ct=!1,Ze=!1,me()&&(q.style.visibility="hidden"),kt(),Re(),ut(!0),me()){var Wt=Ue(),yn=Wt.box,Rn=Wt.content;Ce.props.animation&&(G([yn,Rn],Bt),Z([yn,Rn],"hidden"))}Yt(),Xt(),Ce.props.animation?me()&&je(Bt,Ce.unmount):Ce.unmount()}}function Ir(Me){ye(Ce.state.isDestroyed,ne("hideWithInteractivity")),Be().addEventListener("mousemove",Ft),A(an,Ft),Ft(Me)}function Er(){ye(Ce.state.isDestroyed,ne("unmount")),Ce.state.isVisible&&Ce.hide(),Ce.state.isMounted&&(hn(),Dn().forEach(function(Me){Me._tippy.unmount()}),q.parentNode&&q.parentNode.removeChild(q),nn=nn.filter(function(Me){return Me!==Ce}),Ce.state.isMounted=!1,Qe("onHidden",[Ce]))}function yi(){ye(Ce.state.isDestroyed,ne("destroy")),!Ce.state.isDestroyed&&(Ce.clearDelayTimeouts(),Ce.unmount(),Zt(),delete ge._tippy,Ce.state.isDestroyed=!0,Qe("onDestroy",[Ce]))}}function le(ge,_e){_e===void 0&&(_e={});var we=Le.plugins.concat(_e.plugins||[]);Se(ge),ze(_e,we),J();var We=Object.assign({},_e,{plugins:we}),tt=U(ge);{var Je=B(We.content),Ze=tt.length>1;ye(Je&&Ze,["tippy() was passed an Element as the `content` prop, but more than","one tippy instance was created by this invocation. This means the","content element will only be appended to the last tippy instance.",` - -`,"Instead, pass the .innerHTML of the element, or use a function that","returns a cloned version of the element instead.",` - -`,`1) content: element.innerHTML -`,"2) content: () => element.cloneNode(true)"].join(" "))}var ht=tt.reduce(function(gt,Ct){var Nt=Ct&&pn(Ct,We);return Nt&>.push(Nt),gt},[]);return B(ge)?ht[0]:ht}le.defaultProps=Le,le.setDefaultProps=fe,le.currentInput=N;var Ne=function(_e){var we=_e===void 0?{}:_e,We=we.exclude,tt=we.duration;nn.forEach(function(Je){var Ze=!1;if(We&&(Ze=k(We)?Je.reference===We:Je.popper===We.popper),!Ze){var ht=Je.props.duration;Je.setProps({duration:tt}),Je.hide(),Je.state.isDestroyed||Je.setProps({duration:ht})}})},Ge=Object.assign({},S.applyStyles,{effect:function(_e){var we=_e.state,We={popper:{position:we.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(we.elements.popper.style,We.popper),we.styles=We,we.elements.arrow&&Object.assign(we.elements.arrow.style,We.arrow)}}),it=function(_e,we){var We;we===void 0&&(we={}),ke(!Array.isArray(_e),["The first argument passed to createSingleton() must be an array of","tippy instances. The passed value was",String(_e)].join(" "));var tt=_e,Je=[],Ze=[],ht,gt=we.overrides,Ct=[],Nt=!1;function rn(){Ze=tt.map(function(Ce){return y(Ce.props.triggerTarget||Ce.reference)}).reduce(function(Ce,xt){return Ce.concat(xt)},[])}function $t(){Je=tt.map(function(Ce){return Ce.reference})}function sn(Ce){tt.forEach(function(xt){Ce?xt.enable():xt.disable()})}function Ft(Ce){return tt.map(function(xt){var q=xt.setProps;return xt.setProps=function(de){q(de),xt.reference===ht&&Ce.setProps(de)},function(){xt.setProps=q}})}function yt(Ce,xt){var q=Ze.indexOf(xt);if(xt!==ht){ht=xt;var de=(gt||[]).concat("content").reduce(function(ee,te){return ee[te]=tt[q].props[te],ee},{});Ce.setProps(Object.assign({},de,{getReferenceClientRect:typeof de.getReferenceClientRect=="function"?de.getReferenceClientRect:function(){var ee;return(ee=Je[q])==null?void 0:ee.getBoundingClientRect()}}))}}sn(!1),$t(),rn();var Dt={fn:function(){return{onDestroy:function(){sn(!0)},onHidden:function(){ht=null},onClickOutside:function(q){q.props.showOnCreate&&!Nt&&(Nt=!0,ht=null)},onShow:function(q){q.props.showOnCreate&&!Nt&&(Nt=!0,yt(q,Je[0]))},onTrigger:function(q,de){yt(q,de.currentTarget)}}}},ot=le(M(),Object.assign({},h(we,["overrides"]),{plugins:[Dt].concat(we.plugins||[]),triggerTarget:Ze,popperOptions:Object.assign({},we.popperOptions,{modifiers:[].concat(((We=we.popperOptions)==null?void 0:We.modifiers)||[],[Ge])})})),Kt=ot.show;ot.show=function(Ce){if(Kt(),!ht&&Ce==null)return yt(ot,Je[0]);if(!(ht&&Ce==null)){if(typeof Ce=="number")return Je[Ce]&&yt(ot,Je[Ce]);if(tt.indexOf(Ce)>=0){var xt=Ce.reference;return yt(ot,xt)}if(Je.indexOf(Ce)>=0)return yt(ot,Ce)}},ot.showNext=function(){var Ce=Je[0];if(!ht)return ot.show(0);var xt=Je.indexOf(ht);ot.show(Je[xt+1]||Ce)},ot.showPrevious=function(){var Ce=Je[Je.length-1];if(!ht)return ot.show(Ce);var xt=Je.indexOf(ht),q=Je[xt-1]||Ce;ot.show(q)};var tn=ot.setProps;return ot.setProps=function(Ce){gt=Ce.overrides||gt,tn(Ce)},ot.setInstances=function(Ce){sn(!0),Ct.forEach(function(xt){return xt()}),tt=Ce,sn(!1),$t(),rn(),Ct=Ft(ot),ot.setProps({triggerTarget:Ze})},Ct=Ft(ot),ot},at={mouseover:"mouseenter",focusin:"focus",click:"click"};function Rt(ge,_e){ke(!(_e&&_e.target),["You must specity a `target` prop indicating a CSS selector string matching","the target elements that should receive a tippy."].join(" "));var we=[],We=[],tt=!1,Je=_e.target,Ze=h(_e,["target"]),ht=Object.assign({},Ze,{trigger:"manual",touch:!1}),gt=Object.assign({touch:Le.touch},Ze,{showOnCreate:!0}),Ct=le(ge,ht),Nt=y(Ct);function rn(Dt){if(!(!Dt.target||tt)){var ot=Dt.target.closest(Je);if(ot){var Kt=ot.getAttribute("data-tippy-trigger")||_e.trigger||Le.trigger;if(!ot._tippy&&!(Dt.type==="touchstart"&&typeof gt.touch=="boolean")&&!(Dt.type!=="touchstart"&&Kt.indexOf(at[Dt.type])<0)){var tn=le(ot,gt);tn&&(We=We.concat(tn))}}}}function $t(Dt,ot,Kt,tn){tn===void 0&&(tn=!1),Dt.addEventListener(ot,Kt,tn),we.push({node:Dt,eventType:ot,handler:Kt,options:tn})}function sn(Dt){var ot=Dt.reference;$t(ot,"touchstart",rn,t),$t(ot,"mouseover",rn),$t(ot,"focusin",rn),$t(ot,"click",rn)}function Ft(){we.forEach(function(Dt){var ot=Dt.node,Kt=Dt.eventType,tn=Dt.handler,Ce=Dt.options;ot.removeEventListener(Kt,tn,Ce)}),we=[]}function yt(Dt){var ot=Dt.destroy,Kt=Dt.enable,tn=Dt.disable;Dt.destroy=function(Ce){Ce===void 0&&(Ce=!0),Ce&&We.forEach(function(xt){xt.destroy()}),We=[],Ft(),ot()},Dt.enable=function(){Kt(),We.forEach(function(Ce){return Ce.enable()}),tt=!1},Dt.disable=function(){tn(),We.forEach(function(Ce){return Ce.disable()}),tt=!0},sn(Dt)}return Nt.forEach(yt),Ct}var bt={name:"animateFill",defaultValue:!1,fn:function(_e){var we;if(!((we=_e.props.render)!=null&&we.$$tippy))return ke(_e.props.animateFill,"The `animateFill` plugin requires the default render function."),{};var We=Ht(_e.popper),tt=We.box,Je=We.content,Ze=_e.props.animateFill?Et():null;return{onCreate:function(){Ze&&(tt.insertBefore(Ze,tt.firstElementChild),tt.setAttribute("data-animatefill",""),tt.style.overflow="hidden",_e.setProps({arrow:!1,animation:"shift-away"}))},onMount:function(){if(Ze){var gt=tt.style.transitionDuration,Ct=Number(gt.replace("ms",""));Je.style.transitionDelay=Math.round(Ct/10)+"ms",Ze.style.transitionDuration=gt,Z([Ze],"visible")}},onShow:function(){Ze&&(Ze.style.transitionDuration="0ms")},onHide:function(){Ze&&Z([Ze],"hidden")}}}};function Et(){var ge=M();return ge.className=a,Z([ge],"hidden"),ge}var At={clientX:0,clientY:0},Jt=[];function Un(ge){var _e=ge.clientX,we=ge.clientY;At={clientX:_e,clientY:we}}function En(ge){ge.addEventListener("mousemove",Un)}function Vn(ge){ge.removeEventListener("mousemove",Un)}var _r={name:"followCursor",defaultValue:!1,fn:function(_e){var we=_e.reference,We=Q(_e.props.triggerTarget||we),tt=!1,Je=!1,Ze=!0,ht=_e.props;function gt(){return _e.props.followCursor==="initial"&&_e.state.isVisible}function Ct(){We.addEventListener("mousemove",$t)}function Nt(){We.removeEventListener("mousemove",$t)}function rn(){tt=!0,_e.setProps({getReferenceClientRect:null}),tt=!1}function $t(yt){var Dt=yt.target?we.contains(yt.target):!0,ot=_e.props.followCursor,Kt=yt.clientX,tn=yt.clientY,Ce=we.getBoundingClientRect(),xt=Kt-Ce.left,q=tn-Ce.top;(Dt||!_e.props.interactive)&&_e.setProps({getReferenceClientRect:function(){var ee=we.getBoundingClientRect(),te=Kt,oe=tn;ot==="initial"&&(te=ee.left+xt,oe=ee.top+q);var ve=ot==="horizontal"?ee.top:oe,me=ot==="vertical"?ee.right:te,Pe=ot==="horizontal"?ee.bottom:oe,Be=ot==="vertical"?ee.left:te;return{width:me-Be,height:Pe-ve,top:ve,right:me,bottom:Pe,left:Be}}})}function sn(){_e.props.followCursor&&(Jt.push({instance:_e,doc:We}),En(We))}function Ft(){Jt=Jt.filter(function(yt){return yt.instance!==_e}),Jt.filter(function(yt){return yt.doc===We}).length===0&&Vn(We)}return{onCreate:sn,onDestroy:Ft,onBeforeUpdate:function(){ht=_e.props},onAfterUpdate:function(Dt,ot){var Kt=ot.followCursor;tt||Kt!==void 0&&ht.followCursor!==Kt&&(Ft(),Kt?(sn(),_e.state.isMounted&&!Je&&!gt()&&Ct()):(Nt(),rn()))},onMount:function(){_e.props.followCursor&&!Je&&(Ze&&($t(At),Ze=!1),gt()||Ct())},onTrigger:function(Dt,ot){K(ot)&&(At={clientX:ot.clientX,clientY:ot.clientY}),Je=ot.type==="focus"||ot.type==="focusin"},onHidden:function(){_e.props.followCursor&&(rn(),Nt(),Ze=!0)}}}};function ln(ge,_e){var we;return{popperOptions:Object.assign({},ge.popperOptions,{modifiers:[].concat((((we=ge.popperOptions)==null?void 0:we.modifiers)||[]).filter(function(We){var tt=We.name;return tt!==_e.name}),[_e])})}}var un={name:"inlinePositioning",defaultValue:!1,fn:function(_e){var we=_e.reference;function We(){return!!_e.props.inlinePositioning}var tt,Je=-1,Ze=!1,ht=[],gt={name:"tippyInlinePositioning",enabled:!0,phase:"afterWrite",fn:function(sn){var Ft=sn.state;We()&&(ht.indexOf(Ft.placement)!==-1&&(ht=[]),tt!==Ft.placement&&ht.indexOf(Ft.placement)===-1&&(ht.push(Ft.placement),_e.setProps({getReferenceClientRect:function(){return Ct(Ft.placement)}})),tt=Ft.placement)}};function Ct($t){return zn(w($t),we.getBoundingClientRect(),b(we.getClientRects()),Je)}function Nt($t){Ze=!0,_e.setProps($t),Ze=!1}function rn(){Ze||Nt(ln(_e.props,gt))}return{onCreate:rn,onAfterUpdate:rn,onTrigger:function(sn,Ft){if(K(Ft)){var yt=b(_e.reference.getClientRects()),Dt=yt.find(function(Kt){return Kt.left-2<=Ft.clientX&&Kt.right+2>=Ft.clientX&&Kt.top-2<=Ft.clientY&&Kt.bottom+2>=Ft.clientY}),ot=yt.indexOf(Dt);Je=ot>-1?ot:Je}},onHidden:function(){Je=-1}}}};function zn(ge,_e,we,We){if(we.length<2||ge===null)return _e;if(we.length===2&&We>=0&&we[0].left>we[1].right)return we[We]||_e;switch(ge){case"top":case"bottom":{var tt=we[0],Je=we[we.length-1],Ze=ge==="top",ht=tt.top,gt=Je.bottom,Ct=Ze?tt.left:Je.left,Nt=Ze?tt.right:Je.right,rn=Nt-Ct,$t=gt-ht;return{top:ht,bottom:gt,left:Ct,right:Nt,width:rn,height:$t}}case"left":case"right":{var sn=Math.min.apply(Math,we.map(function(q){return q.left})),Ft=Math.max.apply(Math,we.map(function(q){return q.right})),yt=we.filter(function(q){return ge==="left"?q.left===sn:q.right===Ft}),Dt=yt[0].top,ot=yt[yt.length-1].bottom,Kt=sn,tn=Ft,Ce=tn-Kt,xt=ot-Dt;return{top:Dt,bottom:ot,left:Kt,right:tn,width:Ce,height:xt}}default:return _e}}var Yn={name:"sticky",defaultValue:!1,fn:function(_e){var we=_e.reference,We=_e.popper;function tt(){return _e.popperInstance?_e.popperInstance.state.elements.reference:we}function Je(Ct){return _e.props.sticky===!0||_e.props.sticky===Ct}var Ze=null,ht=null;function gt(){var Ct=Je("reference")?tt().getBoundingClientRect():null,Nt=Je("popper")?We.getBoundingClientRect():null;(Ct&&Ln(Ze,Ct)||Nt&&Ln(ht,Nt))&&_e.popperInstance&&_e.popperInstance.update(),Ze=Ct,ht=Nt,_e.state.isMounted&&requestAnimationFrame(gt)}return{onMount:function(){_e.props.sticky&>()}}}};function Ln(ge,_e){return ge&&_e?ge.top!==_e.top||ge.right!==_e.right||ge.bottom!==_e.bottom||ge.left!==_e.left:!0}return v&&_(R),le.setDefaultProps({plugins:[bt,_r,un,Yn],render:jt}),le.createSingleton=it,le.delegate=Rt,le.hideAll=Ne,le.roundArrow=g,le})},65101:(C,I,i)=>{var S,R;S=[i(72851)],R=i.dj.d(S,function(_){"use strict";var v={};return v.default=_.AckExtension=function(){let f,g=!1,p;function d(a,e){f._debug(a,e)}this.registered=(a,e)=>{f=e,d("AckExtension: executing registration callback")},this.unregistered=()=>{d("AckExtension: executing unregistration callback"),f=null},this.incoming=a=>{const e=a.channel,o=a.ext;if(e==="/meta/handshake"){if(o){const t=o.ack;if(typeof t=="object"){g=t.enabled===!0;const n=t.batch;typeof n=="number"&&(p=n)}else g=t===!0}d("AckExtension: server supports acknowledgements",g)}else e==="/meta/connect"&&a.successful&&g&&o&&typeof o.ack=="number"&&(p=o.ack,d("AckExtension: server sent batch",p));return a},this.outgoing=a=>{const e=a.channel;return a.ext||(a.ext={}),e==="/meta/handshake"?(a.ext.ack=f&&f.ackEnabled!==!1,g=!1,p=0):e==="/meta/connect"&&g&&(a.ext.ack=p,d("AckExtension: client sending batch",p)),a}},v.default},C,I),C.exports=R},72851:(C,I,i)=>{var S,R;S=[],R=i.dj.d(S,function(){"use strict";var _={};function v(){let u=0;const c={};this.register=h=>{const E=++u;return c[E]=h,E},this.unregister=h=>{const E=c[h];return delete c[h],E},this.setTimeout=(h,E)=>window.setTimeout(h,E),this.clearTimeout=h=>{window.clearTimeout(h)}}function f(){const u={};self.onmessage=c=>{const h=c.data,E=u[h.id];switch(h.type){case"setTimeout":u[h.id]=self.setTimeout(()=>{delete u[h.id],self.postMessage({id:h.id})},h.delay);break;case"clearTimeout":delete u[h.id],E&&self.clearTimeout(E);break;default:throw"Unknown command "+h.type}}}const g={isString:u=>u==null?!1:typeof u=="string"||u instanceof String};function p(){let u=[],c={};this.getTransportTypes=()=>u.slice(0),this.findTransportTypes=(h,E,y)=>{const A=[];for(let T=0;T{for(let T=0;T{let A=!1;for(let T=0;T{for(let E=0;E{for(let E=0;E{u=[],c={}},this.reset=h=>{for(let E=0;E{u=E,c=y},this.unregistered=()=>{u=null,c=null},this._notifyTransportTimeout=function(E){const y=c._getTransportListeners("timeout");if(y)for(let A=0;A0)return w}catch(w){this._info("Exception during execution of transport listener",T,w)}}return 0},this._debug=function(){c._debug.apply(c,arguments)},this._info=function(){c._info.apply(c,arguments)},this._mixin=function(){return c._mixin.apply(c,arguments)},this.getConfiguration=()=>c.getConfiguration(),this.getAdvice=()=>c.getAdvice(),this.setTimeout=(E,y)=>c.setTimeout(E,y),this.clearTimeout=E=>{c.clearTimeout(E)},this.convertToJSON=function(E){const y=this.getConfiguration().maxSendBayeuxMessageSize;let A="[";for(let T=0;T0&&(A+=",");const w=E[T],b=JSON.stringify(w);if(b.length>y)throw"maxSendBayeuxMessageSize "+y+" exceeded";A+=b}return A+="]",A},this.convertToMessages=function(E){if(g.isString(E))try{return JSON.parse(E)}catch(y){throw this._debug("Could not convert to JSON the following string",'"'+E+'"'),y}if(Array.isArray(E))return E;if(E==null)return[];if(E instanceof Object)return[E];throw"Conversion Error "+E+", typeof "+typeof E},this.accept=(E,y,A)=>{throw"Abstract"},this.getType=()=>u,this.getURL=()=>h,this.setURL=E=>{h=E},this.send=(E,y)=>{throw"Abstract"},this.reset=function(E){this._debug("Transport",u,"reset",E?"initial":"retry")},this.abort=function(){this._debug("Transport",u,"aborted")},this.toString=function(){return this.getType()}}d.derive=u=>{function c(){}return c.prototype=u,new c};function a(){const u=new d,c=d.derive(u);let h=0,E=null,y=[],A=[];function T(K){for(;A.length>0;){const k=A[0],U=k[0],G=k[1];if(U.url===K.url&&U.sync===K.sync){A.shift(),K.messages=K.messages.concat(U.messages),this._debug("Coalesced",U.messages.length,"messages from request",G.id);continue}break}}function w(K,k,U){const G=this._notifyTransportTimeout(K.messages);if(G>0)this._debug("Transport",this.getType(),"extended waiting for message replies of request",k.id,":",G,"ms"),k.timeout=this.setTimeout(()=>{w.call(this,K,k,U+G)},G);else{k.expired=!0;const Z="Transport "+this.getType()+" expired waiting for message replies of request "+k.id+": "+U+" ms",Q={reason:Z},$=k.xhr;Q.httpCode=this.xhrStatus($),this.abortXHR($),this._debug(Z),this.complete(k,!1,k.metaConnect),K.onFailure($,K.messages,Q)}}function b(K,k){if(this.transportSend(K,k)&&(k.expired=!1,!K.sync)){let U=this.getConfiguration().maxNetworkDelay;k.metaConnect===!0&&(U+=this.getAdvice().timeout),this._debug("Transport",this.getType(),"started waiting for message replies of request",k.id,":",U,"ms"),k.timeout=this.setTimeout(()=>{w.call(this,K,k,U)},U)}}function x(K){const k=++h,U={id:k,metaConnect:!1,envelope:K};y.length=0&&y.splice(U,1),A.length>0){const G=A.shift(),Z=G[0],Q=G[1];this._debug("Transport dequeued request",Q.id),k?(this.getConfiguration().autoBatch&&T.call(this,Z),x.call(this,Z),this._debug("Transport completed request",K.id,Z)):this.setTimeout(()=>{this.complete(Q,!1,Q.metaConnect);const $={reason:"Previous request failed"},F=Q.xhr;$.httpCode=this.xhrStatus(F),Z.onFailure(F,Z.messages,$)},0)}}c.complete=function(K,k,U){U?M.call(this,K):B.call(this,K,k)},c.transportSend=(K,k)=>{throw"Abstract"},c.transportSuccess=function(K,k,U){k.expired||(this.clearTimeout(k.timeout),this._debug("Transport",this.getType(),"cancelled waiting for message replies"),this.complete(k,!0,k.metaConnect),U&&U.length>0?K.onSuccess(U):K.onFailure(k.xhr,K.messages,{httpCode:204}))},c.transportFailure=function(K,k,U){k.expired||(this.clearTimeout(k.timeout),this._debug("Transport",this.getType(),"cancelled waiting for failed message replies"),this.complete(k,!1,k.metaConnect),K.onFailure(k.xhr,K.messages,U))};function W(K){if(E!==null)throw"Concurrent /meta/connect requests not allowed, request id="+E.id+" not yet completed";const k=++h;this._debug("Transport",this.getType(),"/meta/connect send, request",k,"envelope",K);const U={id:k,metaConnect:!0,envelope:K};b.call(this,K,U),E=U}return c.send=function(K,k){k?W.call(this,K):x.call(this,K)},c.abort=function(){u.abort();for(let k=0;k{u.reset(K),E=null,y=[],A=[]},c.abortXHR=function(K){if(K)try{const k=K.readyState;return K.abort(),k!==window.XMLHttpRequest.UNSENT}catch(k){this._debug(k)}return!1},c.xhrStatus=function(K){if(K)try{return K.status}catch(k){this._debug(k)}return-1},c}function e(){const u=new a,c=d.derive(u);let h=!0;c.accept=(y,A,T)=>h||!A,c.newXMLHttpRequest=()=>new window.XMLHttpRequest;function E(y){try{y.context=c.context}catch(A){c._debug("Could not copy transport context into XHR",A)}}return c.xhrSend=y=>{const A=c.newXMLHttpRequest();E(A),A.withCredentials=!0,A.open("POST",y.url,y.sync!==!0);const T=y.headers;if(T)for(let w in T)T.hasOwnProperty(w)&&A.setRequestHeader(w,T[w]);return A.setRequestHeader("Content-Type","application/json;charset=UTF-8"),A.onload=()=>{A.status===200?y.onSuccess(A.responseText):y.onError(A.statusText)},A.onabort=A.onerror=()=>{y.onError(A.statusText)},A.send(y.body),A},c.transportSend=function(y,A){this._debug("Transport",this.getType(),"sending request",A.id,"envelope",y);try{let T=!0;return A.xhr=this.xhrSend({transport:this,url:y.url,sync:y.sync,headers:this.getConfiguration().requestHeaders,body:this.convertToJSON(y.messages),onSuccess:w=>{this._debug("Transport",this.getType(),"received response",w);let b=!1;try{const x=this.convertToMessages(w);x.length===0?(h=!1,this.transportFailure(y,A,{httpCode:204})):(b=!0,this.transportSuccess(y,A,x))}catch(x){if(this._debug(x),!b){h=!1;const M={exception:x};M.httpCode=this.xhrStatus(A.xhr),this.transportFailure(y,A,M)}}},onError:(w,b)=>{this._debug("Transport",this.getType(),"received error",w,b),h=!1;const x={reason:w,exception:b};x.httpCode=this.xhrStatus(A.xhr),T?this.setTimeout(()=>{this.transportFailure(y,A,x)},0):this.transportFailure(y,A,x)}}),T=!1,!0}catch(T){return this._debug("Transport",this.getType(),"exception:",T),h=!1,this.setTimeout(()=>{this.transportFailure(y,A,{exception:T})},0),!1}},c.reset=y=>{u.reset(y),h=!0},c}function o(){const u=new a,c=d.derive(u);let h=0;c.accept=(y,A,T)=>!0,c.jsonpSend=y=>{const A=document.getElementsByTagName("head")[0],T=document.createElement("script"),w="_cometd_jsonp_"+h++;window[w]=x=>{A.removeChild(T),delete window[w],y.onSuccess(x)};let b=y.url;b+=b.indexOf("?")<0?"?":"&",b+="jsonp="+w,b+="&message="+encodeURIComponent(y.body),T.src=b,T.async=y.sync!==!0,T.type="application/javascript",T.onerror=x=>{y.onError("jsonp "+x.type)},A.appendChild(T)};function E(y,A,T){return()=>{this.transportFailure(y,A,"error",T)}}return c.transportSend=function(y,A){let T=0,w=y.messages.length;const b=[];for(;w>0;){const M=JSON.stringify(y.messages.slice(T,T+w)),B=y.url.length+encodeURI(M).length,W=this.getConfiguration().maxURILength;if(B>W){if(w===1){const K="Bayeux message too big ("+B+" bytes, max is "+W+") for transport "+this.getType();this.setTimeout(E.call(this,y,A,K),0);return}--w;continue}b.push(w),T+=w,w=y.messages.length-T}let x=y;if(b.length>1){let M=0,B=b[0];this._debug("Transport",this.getType(),"split",y.messages.length,"messages into",b.join(" + ")),x=this._mixin(!1,{},y),x.messages=y.messages.slice(M,B),x.onSuccess=y.onSuccess,x.onFailure=y.onFailure;for(let W=1;W{let W=!1;try{const K=this.convertToMessages(B);K.length===0?this.transportFailure(x,A,{httpCode:204}):(W=!0,this.transportSuccess(x,A,K))}catch(K){this._debug(K),W||this.transportFailure(x,A,{exception:K})}},onError:(B,W)=>{const K={reason:B,exception:W};M?this.setTimeout(()=>{this.transportFailure(x,A,K)},0):this.transportFailure(x,A,K)}}),M=!1,!0}catch(M){return this.setTimeout(()=>{this.transportFailure(x,A,{exception:M})},0),!1}},c}function t(){const u=new d,c=d.derive(u);let h,E=!0,y=!1,A=!0,T=null,w=null,b=!1,x=null;c.reset=Q=>{u.reset(Q),E=!0,Q&&(y=!1),A=!0,Q&&(T=null),w=null,b=!1};function M(Q,$){Q&&(this.webSocketClose(Q,$.code,$.reason),this.onClose(Q,$))}function B(Q){return Q===w||Q===T}function W(Q,$,F){const P=[];for(let N=0;N<$.messages.length;++N){const O=$.messages[N];O.id&&P.push(O.id)}Q.envelopes[P.join(",")]=[$,F],this._debug("Transport",this.getType(),"stored envelope, envelopes",Q.envelopes)}function K(Q,$){let F=!1;const P=Q.envelopes;for(let N=0;N<$.length;++N){const O=$[N];for(let H in P)if(P.hasOwnProperty(H)){const Y=H.split(","),z=Y.indexOf(O);if(z>=0){F=!0,Y.splice(z,1);const J=P[H][0],ne=P[H][1];delete P[H],Y.length>0&&(P[Y.join(",")]=[J,ne]);break}}}F&&this._debug("Transport",this.getType(),"removed envelope, envelopes",P)}function k(Q){if(w)return;const $=h.getURL().replace(/^http/,"ws");this._debug("Transport",this.getType(),"connecting to URL",$);try{const H=h.getConfiguration().protocol;Q.webSocket=H?new window.WebSocket($,H):new window.WebSocket($),w=Q}catch(H){throw E=!1,this._debug("Exception while creating WebSocket object",H),H}A=h.getConfiguration().stickyReconnect!==!1;const F=h.getConfiguration().connectTimeout;F>0&&(Q.connectTimer=this.setTimeout(()=>{h._debug("Transport",this.getType(),"timed out while connecting to URL",$,":",F,"ms"),M.call(this,Q,{code:1e3,reason:"Connect Timeout"})},F));const P=()=>{h._debug("WebSocket onopen",Q),Q.connectTimer&&this.clearTimeout(Q.connectTimer),B(Q)?(w=null,T=Q,y=!0,this.onOpen(Q)):(h._warn("Closing extra WebSocket connection",this,"active connection",T),M.call(this,Q,{code:1e3,reason:"Extra Connection"}))},N=H=>{H=H||{code:1e3},h._debug("WebSocket onclose",Q,H,"connecting",w,"current",T),Q.connectTimer&&this.clearTimeout(Q.connectTimer),this.onClose(Q,H)},O=H=>{h._debug("WebSocket onmessage",H,Q),this.onMessage(Q,H)};Q.webSocket.onopen=P,Q.webSocket.onclose=N,Q.webSocket.onerror=()=>{N({code:1e3,reason:"Error"})},Q.webSocket.onmessage=O,this._debug("Transport",this.getType(),"configured callbacks on",Q)}function U(Q,$,F){const P=this._notifyTransportTimeout([$]);P>0?(this._debug("Transport",this.getType(),"extended waiting for message replies:",P,"ms"),Q.timeouts[$.id]=this.setTimeout(()=>{U.call(this,Q,$,F+P)},P)):(this._debug("Transport",this.getType(),"expired waiting for message reply",$.id,":",F,"ms"),M.call(this,Q,{code:1e3,reason:"Message Timeout"}))}function G(Q,$,F){let P;try{P=this.convertToJSON($.messages)}catch(H){this._debug("Transport",this.getType(),"exception:",H);const Y=[];for(let z=0;z<$.messages.length;++z){const J=$.messages[z];Y.push(J.id)}K.call(this,Q,Y),this.setTimeout(()=>{this._notifyFailure($.onFailure,Q,$.messages,{exception:H})},0);return}Q.webSocket.send(P),this._debug("Transport",this.getType(),"sent",$,"/meta/connect =",F);let N=this.getConfiguration().maxNetworkDelay;F&&(N+=this.getAdvice().timeout,b=!0);const O=[];for(let H=0;H<$.messages.length;++H){const Y=$.messages[H];Y.id&&(O.push(Y.id),Q.timeouts[Y.id]=this.setTimeout(()=>{U.call(this,Q,Y,N)},N))}this._debug("Transport",this.getType(),"started waiting for message replies",N,"ms, messageIds:",O,", timeouts:",Q.timeouts)}c._notifySuccess=function(Q,$){Q.call(this,$)},c._notifyFailure=function(Q,$,F,P){Q.call(this,$,F,P)};function Z(Q,$,F){try{Q===null?(Q=w||{envelopes:{},timeouts:{}},W.call(this,Q,$,F),k.call(this,Q)):(W.call(this,Q,$,F),G.call(this,Q,$,F))}catch(P){this.setTimeout(()=>{M.call(this,Q,{code:1e3,reason:"Exception",exception:P})},0)}}return c.onOpen=function(Q){const $=Q.envelopes;this._debug("Transport",this.getType(),"opened",Q,"pending messages",$);for(let F in $)if($.hasOwnProperty(F)){const P=$[F],N=P[0],O=P[1];x=N.onSuccess,G.call(this,Q,N,O)}},c.onMessage=function(Q,$){this._debug("Transport",this.getType(),"received websocket message",$,Q);let F=!1;const P=this.convertToMessages($.data),N=[];for(let O=0;O{u.registered(Q,$),h=$},c.accept=function(Q,$,F){return this._debug("Transport",this.getType(),"accept, supported:",E),E&&!!window.WebSocket&&h.websocketEnabled!==!1},c.send=function(Q,$){this._debug("Transport",this.getType(),"sending",Q,"/meta/connect =",$),Z.call(this,T,Q,$)},c.webSocketClose=function(Q,$,F){try{Q.webSocket&&Q.webSocket.close($,F)}catch(P){this._debug(P)}},c.abort=function(){u.abort(),M.call(this,T,{code:1e3,reason:"Abort"}),this.reset(!0)},c}function n(u){const c=new v,h=this,E=u||"default";let y=!1;const A=new p;let T,w="disconnected",b=0,x=null,M=0,B=[],W=!1,K=0,k={};const U={};let G=0,Z=null;const Q=[];let $={},F,P;const N={},O={};let H=!1,Y=!1,z=0,J=0,ne=null,ie={useWorkerScheduler:!0,protocol:null,stickyReconnect:!0,connectTimeout:0,maxConnections:2,backoffIncrement:1e3,maxBackoff:6e4,logLevel:"info",maxNetworkDelay:1e4,requestHeaders:{},appendMessageTypeToURL:!0,autoBatch:!1,urls:{},maxURILength:2e3,maxSendBayeuxMessageSize:8192,advice:{timeout:6e4,interval:0,reconnect:void 0,maxInterval:0}};function se(q,de){try{return q[de]}catch(ee){return}}this._mixin=function(q,de,ee){const te=de||{};for(let oe=2;oe="A"&&q<="Z"?!0:q>="a"&&q<="z"}function he(q){return q>="0"&&q<="9"}function ye(q){switch(q){case" ":case"!":case"#":case"$":case"(":case")":case"*":case"+":case"-":case".":case"/":case"@":case"_":case"{":case"~":case"}":case":":case"\\":case",":return!0;default:return!1}}function ke(q){if(!ce(q)||q.length<2||q.charAt(0)!=="/")return!1;for(let de=1;de0&&!(q>=Math.pow(10,de));)ee+="0";return ee+=q,ee}function Xe(q,de){if(window.console){const ee=window.console[q];if(Se(ee)){const te=new Date;[].splice.call(de,0,0,Fe(te.getHours(),2)+":"+Fe(te.getMinutes(),2)+":"+Fe(te.getSeconds(),2)+"."+Fe(te.getMilliseconds(),3)),ee.apply(window.console,de)}}}this._warn=function(){Xe("warn",arguments)},this._info=function(){ie.logLevel!=="warn"&&Xe("info",arguments)},this._debug=function(){ie.logLevel==="debug"&&Xe("debug",arguments)};function Le(q){return new RegExp("(^https?://)?(((\\[[^\\]]+])|([^:/?#]+))(:(\\d+))?)?([^?#]*)(.*)?").exec(q)}this._isCrossDomain=q=>window.location&&window.location.host&&q?q!==window.location.host:!1;function ue(q){h._debug("Configuring cometd object with",q),ce(q)&&(q={url:q}),q||(q={}),ie=h._mixin(!1,ie,q);const de=h.getURL();if(!de)throw"Missing required configuration parameter 'url' specifying the Bayeux server URL";const ee=Le(de),te=ee[2],oe=ee[8],ve=ee[9];if(y=h._isCrossDomain(te),ie.appendMessageTypeToURL)if(ve!==void 0&&ve.length>0)h._info("Appending message type to URI "+oe+ve+" is not supported, disabling 'appendMessageTypeToURL' configuration"),ie.appendMessageTypeToURL=!1;else{const me=oe.split("/");let Pe=me.length-1;oe.match(/\/$/)&&(Pe-=1),me[Pe].indexOf(".")>=0&&(h._info("Appending message type to URI "+oe+" is not supported, disabling 'appendMessageTypeToURL' configuration"),ie.appendMessageTypeToURL=!1)}if(window.Worker&&window.Blob&&window.URL&&ie.useWorkerScheduler){let me=f.toString();me=me.substring(me.indexOf("{")+1,me.lastIndexOf("}"));const Pe=new window.Blob([me],{type:"application/json"}),Be=window.URL.createObjectURL(Pe),Ue=new window.Worker(Be);c.setTimeout=(qe,ut)=>{const Qe=c.register(qe);return Ue.postMessage({id:Qe,type:"setTimeout",delay:ut}),Qe},c.clearTimeout=qe=>{c.unregister(qe),Ue.postMessage({id:qe,type:"clearTimeout"})},Ue.onmessage=qe=>{const ut=qe.data.id,Qe=c.unregister(ut);Qe&&Qe()}}}function fe(q){if(q){const de=k[q.channel];de&&de[q.id]&&(delete de[q.id],h._debug("Removed",q.listener?"listener":"subscription",q))}}function xe(q){q&&!q.listener&&fe(q)}function Ie(){for(let q in k)if(k.hasOwnProperty(q)){const de=k[q];if(de)for(let ee in de)de.hasOwnProperty(ee)&&xe(de[ee])}}function Oe(q){w!==q&&(h._debug("Status",w,"->",q),w=q)}function ze(){return w==="disconnecting"||w==="disconnected"}function pt(){return""+ ++b}function Tt(q,de,ee,te,oe){try{return de.call(q,te)}catch(ve){const me=h.onExtensionException;if(Se(me)){h._debug("Invoking extension exception handler",ee,ve);try{me.call(h,ve,ee,oe,te)}catch(Pe){h._info("Exception during execution of extension exception handler",ee,Pe)}}else h._info("Exception during execution of extension",ee,ve);return te}}function Lt(q){for(let de=0;de=0&&q!=null;--de){const ee=Q[de],te=ee.extension.outgoing;if(Se(te)){const oe=Tt(ee.extension,te,ee.name,q,!0);q=oe===void 0?q:oe}}return q}function Ht(q,de){const ee=k[q];if(ee){for(let te in ee)if(ee.hasOwnProperty(te)){const oe=ee[te];if(oe)try{oe.callback.call(oe.scope,de)}catch(ve){const me=h.onListenerException;if(Se(me)){h._debug("Invoking listener exception handler",oe,ve);try{me.call(h,ve,oe,oe.listener,de)}catch(Pe){h._info("Exception during execution of listener exception handler",oe,Pe)}}else h._info("Exception during execution of listener",oe,de,ve)}}}}function jt(q,de){Ht(q,de);const ee=q.split("/"),te=ee.length-1;for(let oe=te;oe>0;--oe){let ve=ee.slice(0,oe).join("/")+"/*";oe===te&&Ht(ve,de),ve+="*",Ht(ve,de)}}function _n(){Z!==null&&h.clearTimeout(Z),Z=null}function an(q,de){_n();const ee=$.interval+de;h._debug("Function scheduled in",ee,"ms, interval =",$.interval,"backoff =",G,q),Z=h.setTimeout(q,ee)}let nn,pn;function le(q,de,ee){for(let ve=0;ve{try{nn.call(h,ve)}catch(me){h._info("Exception during handling of messages",me)}},onFailure:(ve,me,Pe)=>{try{const Be=h.getTransport();Pe.connectionType=Be?Be.getType():"unknown",pn.call(h,ve,me,Pe)}catch(Be){h._info("Exception during handling of failure",Be)}}};h._debug("Send",oe),T.send(oe,de)}function Ne(q){M>0||W===!0?B.push(q):le([q],!1)}this.send=Ne;function Ge(){G=0}function it(){return G0&&le(q,!1)}function bt(){if(--M,h._debug("Ending batch, depth",M),M<0)throw"Calls to startBatch() and endBatch() are not paired";M===0&&!ze()&&!W&&Rt()}function Et(){if(!ze()){const q={id:pt(),channel:"/meta/connect",connectionType:T.getType()};Y||(q.advice={timeout:0}),Oe("connecting"),h._debug("Connect sent",q),le([q],!0,"connect"),Oe("connected")}}function At(q){Oe("connecting"),an(()=>{Et()},q)}function Jt(q){q&&($=h._mixin(!1,{},ie.advice,q),h._debug("New advice",$))}function Un(q){if(_n(),q&&T&&T.abort(),y=!1,T=null,Oe("disconnected"),x=null,M=0,Ge(),H=!1,Y=!1,z=0,ne=null,B.length>0){const de=B;B=[],pn.call(h,void 0,de,{reason:"Disconnected"})}}function En(q,de,ee){const te=h.onTransportException;if(Se(te)){h._debug("Invoking transport exception handler",q,de,ee);try{te.call(h,ee,q,de)}catch(oe){h._info("Exception during execution of transport exception handler",oe)}}}function Vn(q,de){Se(q)&&(de=q,q=void 0),x=null,Ie(),ze()&&A.reset(!0),Jt({}),M=0,W=!0,F=q,P=de;const ee="1.0",te=h.getURL(),oe=A.findTransportTypes(ee,y,te),ve={id:pt(),version:ee,minimumVersion:ee,channel:"/meta/handshake",supportedConnectionTypes:oe,advice:{timeout:$.timeout,interval:$.interval}},me=h._mixin(!1,{},F,ve);if(h._putCallback(me.id,de),!T&&(T=A.negotiateTransport(oe,ee,y,te),!T)){const Pe="Could not find initial transport among: "+A.getTransportTypes();throw h._warn(Pe),Pe}h._debug("Initial transport is",T.getType()),Oe("handshaking"),h._debug("Handshake sent",me),le([me],!1,"handshake")}function _r(q){Oe("handshaking"),W=!0,an(()=>{Vn(F,P)},q)}function ln(q,de){try{q.call(h,de)}catch(ee){const te=h.onCallbackException;if(Se(te)){h._debug("Invoking callback exception handler",ee);try{te.call(h,ee,de)}catch(oe){h._info("Exception during execution of callback exception handler",oe)}}else h._info("Exception during execution of message callback",ee)}}this._getCallback=q=>N[q],this._putCallback=function(q,de){const ee=this._getCallback(q);return Se(de)&&(N[q]=de),ee};function un(q){const de=h._getCallback([q.id]);Se(de)&&(delete N[q.id],ln(de,q))}function zn(q){const de=O[q.id];if(delete O[q.id],de){h._debug("Handling remote call response for",q,"with context",de);const ee=de.timeout;ee&&h.clearTimeout(ee);const te=de.callback;if(Se(te))return ln(te,q),!0}return!1}this.onTransportFailure=function(q,de,ee){this._debug("Transport failure",de,"for",q);const te=this.getTransportRegistry(),oe=this.getURL(),ve=this._isCrossDomain(Le(oe)[2]),me="1.0",Pe=te.findTransportTypes(me,ve,oe);if(de.action==="none"){if(q.channel==="/meta/handshake"&&!de.transport){const Be="Could not negotiate transport, client=["+Pe+"], server=["+q.supportedConnectionTypes+"]";this._warn(Be),En(T.getType(),null,{reason:Be,connectionType:T.getType(),transport:T})}}else if(de.delay=this.getBackoffPeriod(),q.channel==="/meta/handshake"){if(!de.transport){const Be=T?T.getType():null,Ue=te.negotiateTransport(Pe,me,ve,oe);if(!Ue)this._warn("Could not negotiate transport, client=["+Pe+"]"),En(Be,null,q.failure),de.action="none";else{const qe=Ue.getType();this._debug("Transport",Be,"->",qe),En(Be,qe,q.failure),de.action="handshake",de.transport=Ue}}de.action!=="none"&&this.increaseBackoffPeriod()}else{const Be=new Date().getTime();if(z===0&&(z=Be),de.action==="retry"){de.delay=this.increaseBackoffPeriod();const Ue=$.maxInterval;if(Ue>0){const qe=$.timeout+$.interval+Ue;Be-z+G>qe&&(de.action="handshake")}}de.action==="handshake"&&(de.delay=0,te.reset(!1),this.resetBackoffPeriod())}ee.call(h,de)};function Yn(q){h._debug("Transport failure handling",q),q.transport&&(T=q.transport),q.url&&T.setURL(q.url);const de=q.action,ee=q.delay||0;switch(de){case"handshake":_r(ee);break;case"retry":At(ee);break;case"none":Un(!0);break;default:throw"Unknown action "+de}}function Ln(q,de){un(q),jt("/meta/handshake",q),jt("/meta/unsuccessful",q),ze()&&(de.action="none"),h.onTransportFailure.call(h,q,de,Yn)}function ge(q){const de=h.getURL();if(q.successful){const ee=h._isCrossDomain(Le(de)[2]),te=A.negotiateTransport(q.supportedConnectionTypes,q.version,ee,de);if(te===null){q.successful=!1,Ln(q,{cause:"negotiation",action:"none",transport:null});return}else T!==te&&(h._debug("Transport",T.getType(),"->",te.getType()),T=te);x=q.clientId,W=!1,Rt(),q.reestablish=H,H=!0,un(q),jt("/meta/handshake",q),J=q["x-messages"]||0;const oe=ze()?"none":$.reconnect||"retry";switch(oe){case"retry":Ge(),J===0?At(0):h._debug("Processing",J,"handshake-delivered messages");break;case"none":Un(!0);break;default:throw"Unrecognized advice action "+oe}}else Ln(q,{cause:"unsuccessful",action:$.reconnect||"handshake",transport:T})}function _e(q){Ln(q,{cause:"failure",action:"handshake",transport:null})}function we(q){return w==="disconnected"?!0:ne&&ne.id===q.id?(ne=null,!0):!1}function We(q,de){jt("/meta/connect",q),jt("/meta/unsuccessful",q),ze()&&(de.action="none"),h.onTransportFailure.call(h,q,de,Yn)}function tt(q){if(we(q))if(Y=q.successful,Y){jt("/meta/connect",q);const de=ze()?"none":$.reconnect||"retry";switch(de){case"retry":Ge(),At(G);break;case"none":Un(!1);break;default:throw"Unrecognized advice action "+de}}else We(q,{cause:"unsuccessful",action:$.reconnect||"retry",transport:T});else h._debug("Mismatched /meta/connect reply",q)}function Je(q){we(q)?(Y=!1,We(q,{cause:"failure",action:"retry",transport:null})):h._debug("Mismatched /meta/connect failure",q)}function Ze(q){Un(!0),un(q),jt("/meta/disconnect",q),jt("/meta/unsuccessful",q)}function ht(q){q.successful?(Un(!1),un(q),jt("/meta/disconnect",q)):Ze(q)}function gt(q){Ze(q)}function Ct(q){const de=k[q.subscription];if(de){for(let ee in de)if(de.hasOwnProperty(ee)){const te=de[ee];te&&!te.listener&&(delete de[ee],h._debug("Removed failed subscription",te))}}un(q),jt("/meta/subscribe",q),jt("/meta/unsuccessful",q)}function Nt(q){q.successful?(un(q),jt("/meta/subscribe",q)):Ct(q)}function rn(q){Ct(q)}function $t(q){un(q),jt("/meta/unsubscribe",q),jt("/meta/unsuccessful",q)}function sn(q){q.successful?(un(q),jt("/meta/unsubscribe",q)):$t(q)}function Ft(q){$t(q)}function yt(q){zn(q)||(un(q),jt("/meta/publish",q),jt("/meta/unsuccessful",q))}function Dt(q){q.data!==void 0?zn(q)||(jt(q.channel,q),J>0&&(--J,J===0&&(h._debug("Processed last handshake-delivered message"),At(0)))):q.successful===void 0?h._warn("Unknown Bayeux Message",q):q.successful?(un(q),jt("/meta/publish",q)):yt(q)}function ot(q){yt(q)}function Kt(q){if(z=0,q=Lt(q),q==null)return;switch(Jt(q.advice),q.channel){case"/meta/handshake":ge(q);break;case"/meta/connect":tt(q);break;case"/meta/disconnect":ht(q);break;case"/meta/subscribe":Nt(q);break;case"/meta/unsubscribe":sn(q);break;default:Dt(q);break}}this.receive=Kt,nn=q=>{h._debug("Received",q);for(let de=0;de{h._debug("handleFailure",q,de,ee),ee.transport=q;for(let te=0;te{A.clear()},this.getTransportTypes=()=>A.getTransportTypes(),this.findTransport=q=>A.find(q),this.getTransportRegistry=()=>A,this.configure=function(q){ue.call(this,q)},this.init=function(q,de){this.configure(q),this.handshake(de)},this.handshake=(q,de)=>{if(w!=="disconnected")throw"Illegal state: handshaken";Vn(q,de)},this.disconnect=function(q,de){if(ze())return;Se(q)&&(de=q,q=void 0);const ee={id:pt(),channel:"/meta/disconnect"},te=this._mixin(!1,{},q,ee);h._putCallback(te.id,de),Oe("disconnecting"),le([te],!1,"disconnect")},this.startBatch=()=>{at()},this.endBatch=()=>{bt()},this.batch=function(q,de){const ee=Ce(q,de);this.startBatch();try{ee.method.call(ee.scope),this.endBatch()}catch(te){throw this._info("Exception during execution of batch",te),this.endBatch(),te}},this.addTransportListener=(q,de)=>{if(q!=="timeout")throw"Unsupported event "+q;let ee=U[q];ee||(U[q]=ee=[]),ee.push(de)},this.removeTransportListener=(q,de)=>{const ee=U[q];if(ee){const te=ee.indexOf(de);if(te>=0)return ee.splice(te,1),!0}return!1},this._getTransportListeners=q=>U[q],this.addListener=function(q,de,ee){if(arguments.length<2)throw"Illegal arguments number: required 2, got "+arguments.length;if(!ce(q))throw"Illegal argument type: channel must be a string";return xt(q,de,ee,!0)},this.removeListener=q=>{if(!q||!q.channel||!("id"in q))throw"Invalid argument: expected subscription, not "+q;fe(q)},this.clearListeners=()=>{k={}},this.subscribe=function(q,de,ee,te,oe){if(arguments.length<2)throw"Illegal arguments number: required 2, got "+arguments.length;if(!ke(q))throw"Illegal argument: invalid channel "+q;if(ze())throw"Illegal state: disconnected";Se(de)&&(oe=te,te=ee,ee=de,de=void 0),Se(te)&&(oe=te,te=void 0);const ve=!tn(q),me=xt(q,de,ee,!1);if(ve){const Pe={id:pt(),channel:"/meta/subscribe",subscription:q},Be=this._mixin(!1,{},te,Pe);h._putCallback(Be.id,oe),Ne(Be)}else Se(oe)&&h.setTimeout(()=>{ln(oe,{id:pt(),successful:!0,channel:"/meta/subscribe",subscription:q})},0);return me},this.unsubscribe=function(q,de,ee){if(arguments.length<1)throw"Illegal arguments number: required 1, got "+arguments.length;if(ze())throw"Illegal state: disconnected";Se(de)&&(ee=de,de=void 0),this.removeListener(q);const te=q.channel;if(tn(te))Se(ee)&&h.setTimeout(()=>{ln(ee,{id:pt(),successful:!0,channel:"/meta/unsubscribe",subscription:te})},0);else{const oe={id:pt(),channel:"/meta/unsubscribe",subscription:te},ve=this._mixin(!1,{},de,oe);h._putCallback(ve.id,ee),Ne(ve)}},this.resubscribe=function(q,de){if(xe(q),q)return this.subscribe(q.channel,q.scope,q.callback,de)},this.clearSubscriptions=()=>{Ie()},this.publish=function(q,de,ee,te){if(arguments.length<1)throw"Illegal arguments number: required 1, got "+arguments.length;if(!ke(q))throw"Illegal argument: invalid channel "+q;if(/^\/meta\//.test(q))throw"Illegal argument: cannot publish to meta channels";if(ze())throw"Illegal state: disconnected";Se(de)?(te=de,de={},ee=void 0):Se(ee)&&(te=ee,ee=void 0);const oe={id:pt(),channel:q,data:de},ve=this._mixin(!1,{},ee,oe);h._putCallback(ve.id,te),Ne(ve)},this.publishBinary=function(q,de,ee,te,oe,ve){Se(de)?(ve=de,de=new ArrayBuffer(0),ee=!0,te=void 0,oe=void 0):Se(ee)?(ve=ee,ee=!0,te=void 0,oe=void 0):Se(te)?(ve=te,te=void 0,oe=void 0):Se(oe)&&(ve=oe,oe=void 0);const me={meta:te,data:de,last:ee},Pe=this._mixin(!1,oe,{ext:{binary:{}}});this.publish(q,me,Pe,ve)},this.remoteCall=function(q,de,ee,te,oe){if(arguments.length<1)throw"Illegal arguments number: required 1, got "+arguments.length;if(!ce(q))throw"Illegal argument type: target must be a string";if(ze())throw"Illegal state: disconnected";if(Se(de)?(oe=de,de={},ee=ie.maxNetworkDelay,te=void 0):Se(ee)?(oe=ee,ee=ie.maxNetworkDelay,te=void 0):Se(te)&&(oe=te,te=void 0),typeof ee!="number")throw"Illegal argument type: timeout must be a number";q.match(/^\//)||(q="/"+q);const ve="/service"+q;if(!ke(ve))throw"Illegal argument: invalid target "+q;const me={id:pt(),channel:ve,data:de},Pe=this._mixin(!1,{},te,me),Be={callback:oe};ee>0&&(Be.timeout=h.setTimeout(()=>{h._debug("Timing out remote call",Pe,"after",ee,"ms"),yt({id:Pe.id,error:"406::timeout",successful:!1,failure:{message:Pe,reason:"Remote Call Timeout"}})},ee),h._debug("Scheduled remote call timeout",Pe,"in",ee,"ms")),O[Pe.id]=Be,Ne(Pe)},this.remoteCallBinary=function(q,de,ee,te,oe,ve,me){Se(de)?(me=de,de=new ArrayBuffer(0),ee=!0,te=void 0,oe=ie.maxNetworkDelay,ve=void 0):Se(ee)?(me=ee,ee=!0,te=void 0,oe=ie.maxNetworkDelay,ve=void 0):Se(te)?(me=te,te=void 0,oe=ie.maxNetworkDelay,ve=void 0):Se(oe)?(me=oe,oe=ie.maxNetworkDelay,ve=void 0):Se(ve)&&(me=ve,ve=void 0);const Pe={meta:te,data:de,last:ee},Be=this._mixin(!1,ve,{ext:{binary:{}}});this.remoteCall(q,Pe,oe,Be,me)},this.getStatus=()=>w,this.isDisconnected=ze,this.setBackoffIncrement=q=>{ie.backoffIncrement=q},this.getBackoffIncrement=()=>ie.backoffIncrement,this.getBackoffPeriod=()=>G,this.increaseBackoffPeriod=()=>it(),this.resetBackoffPeriod=()=>{Ge()},this.setLogLevel=q=>{ie.logLevel=q},this.registerExtension=function(q,de){if(arguments.length<2)throw"Illegal arguments number: required 2, got "+arguments.length;if(!ce(q))throw"Illegal argument type: extension name must be a string";let ee=!1;for(let te=0;te{for(let de=0;deE,this.getClientId=()=>x,this.getURL=()=>{if(T){let q=T.getURL();if(q||(q=ie.urls[T.getType()],q))return q}return ie.url},this.getTransport=()=>T,this.getConfiguration=function(){return this._mixin(!0,{},ie)},this.getAdvice=function(){return this._mixin(!0,{},$)},this.setTimeout=(q,de)=>c.setTimeout(()=>{try{h._debug("Invoking timed function",q),q()}catch(ee){h._debug("Exception invoking timed function",q,ee)}},de),this.clearTimeout=q=>{c.clearTimeout(q)},window.WebSocket&&this.registerTransport("websocket",new t),this.registerTransport("long-polling",new e),this.registerTransport("callback-polling",new o)}const r=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z",".","-",":","+","=","^","!","/","*","?","&","<",">","(",")","[","]","{","}","@","%","$","#"],s=[0,68,0,84,83,82,72,0,75,76,70,65,0,63,62,69,0,1,2,3,4,5,6,7,8,9,64,0,73,66,74,71,81,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,77,0,78,67,0,0,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,79,0,80,0,0],l={encode:u=>{let c=null;if(u instanceof ArrayBuffer?c=u:u.buffer instanceof ArrayBuffer?c=u.buffer:Array.isArray(u)&&(c=new Uint8Array(u).buffer),c==null)throw"Cannot Z85 encode "+u;const h=c.byteLength,E=h%4,y=4-(E===0?4:E),A=new DataView(c);let T="",w=0;for(let b=0;b=h;if(w=w*256+(x?0:A.getUint8(b)),(b+1)%4===0){let M=52200625;for(let B=5;B>0;--B){if(!x||B>y){const W=Math.floor(w/M)%85;T+=r[W]}M/=85}w=0}}return T},decode:u=>{const c=u.length%5,h=5-(c===0?5:c);for(let x=0;x=1;)b{var S,R;S=[i.dj.c(C),i(87226),i(30114),i(34597),i(30209),i(70816),i(17012),i(42357)],R=i.dj.d(S,function(_,v,f,g,p,d,a,e){e.add("config-bgIframe",(e("ie")||e("trident"))&&!/IEMobile\/10\.0/.test(navigator.userAgent));var o=new function(){var t=[];this.pop=function(){var n;if(t.length)n=t.pop(),n.style.display="";else{if(e("ie")<9){var r=f.dojoBlankHtmlUrl||_.toUrl("dojo/resources/blank.html")||'javascript:""',s="